memento-dev/app
2025-04-20 12:55:27 +02:00
..
assets refactor: Remove unused code and update package dependencies 2025-04-19 13:12:29 +02:00
components style: Remove unnecessary code and improve hierarchy display 2025-04-20 12:53:07 +02:00
hooks feat: Implement useId hook for generating unique IDs 2025-04-20 03:19:01 +02:00
icons fix: translate react props to solid props 2025-04-19 19:52:57 +02:00
images feat: Add Header, Footer, and HeroSection components 2025-04-19 18:47:03 +02:00
layouts feat: Add Header and Footer components 2025-04-20 12:55:27 +02:00
libs feat: Add search functionality for documents 2025-04-20 12:41:38 +02:00
pages feat: Add search functionality for documents 2025-04-20 12:41:38 +02:00
partials feat: Add Header and Footer components 2025-04-20 12:55:27 +02:00
server refactor: Remove unused code and update package dependencies 2025-04-19 13:12:29 +02:00
services refactor: Update debounce logic to use SolidJS signals 2025-04-20 03:15:19 +02:00
utils feat: Add new components PrevNextLinks, QuickLinks, MobileNavigation, Navigation, and utility function cleanProps 2025-04-19 15:06:08 +02:00
.env refactor: Remove unused code and update package dependencies 2025-04-19 13:12:29 +02:00
.gitignore refactor: Remove unused code and update package dependencies 2025-04-19 13:12:29 +02:00
.prettierrc refactor: Remove unused code and update package dependencies 2025-04-19 13:12:29 +02:00
bun.lock feat: Add user-agent-data-types to package.json and tsconfig 2025-04-20 03:29:33 +02:00
config.ts style: improve code formatting and consistency 2025-04-20 03:31:12 +02:00
eslint.config.ts refactor: Remove unused code and update package dependencies 2025-04-19 13:12:29 +02:00
fastify-entry.ts feat: Add search functionality for documents 2025-04-20 12:41:38 +02:00
fastify-server.ts feat: Add search functionality for documents 2025-04-20 12:41:38 +02:00
package.json feat: Add user-agent-data-types to package.json and tsconfig 2025-04-20 03:29:33 +02:00
README.md refactor: Remove unused code and update package dependencies 2025-04-19 13:12:29 +02:00
remarkExtractFrontmatter.ts feat: Add table of contents generation for docs pages 2025-04-20 00:33:19 +02:00
remarkHeadingId.ts refactor: Update function parameters in remarkHeadingId plugin 2025-04-20 00:35:16 +02:00
tsconfig.json feat: Add user-agent-data-types to package.json and tsconfig 2025-04-20 03:29:33 +02:00
vite.config.ts feat: Add reading time estimation to pages and frontmatter 2025-04-19 21:24:27 +02:00

Generated with vike.dev/new (version 429) using this command:

bun create vike@latest --solid --tailwindcss --telefunc --fastify --google-analytics --eslint --prettier --biome

Contents

This app is ready to start. It's powered by Vike and SolidJS.

/pages/+config.ts

Such + files are the interface between Vike and your code. It defines:

Routing

Vike's built-in router lets you choose between:

/pages/_error/+Page.jsx

The error page which is rendered when errors occur.

/pages/+onPageTransitionStart.ts and /pages/+onPageTransitionEnd.ts

The onPageTransitionStart() hook, together with onPageTransitionEnd(), enables you to implement page transition animations.

SSR

SSR is enabled by default. You can disable it for all your pages or only for some pages.

HTML Streaming

You can enable/disable HTML streaming for all your pages, or only for some pages while still using it for others.