Files
deno/slidev/netlify.toml
T
thor ede6c3d118 Add initial Slidev project structure with configuration files and example slides
- Created .gitignore to exclude unnecessary files
- Added .npmrc for pnpm configuration
- Initialized deno.lock for dependency management
- Configured Netlify and Vercel deployment settings
- Created package.json with essential scripts and dependencies
- Added README.md with project introduction and usage instructions
- Included example slides in slides.md and imported slides functionality
- Developed a Counter component for interactive presentations
- Added external snippets for code examples
2025-08-01 10:52:38 +02:00

17 lines
230 B
TOML

[build]
publish = "dist"
command = "npm run build"
[build.environment]
NODE_VERSION = "20"
[[redirects]]
from = "/.well-known/*"
to = "/.well-known/:splat"
status = 200
[[redirects]]
from = "/*"
to = "/index.html"
status = 200