mirror of
https://github.com/sajenim/javascript-template.git
synced 2025-12-17 03:50:40 +08:00
- Add Tailwind CSS v4 to Next.js template with zero-config setup - Migrate both templates to ESLint flat config (eslint.config.mjs) - Add proper .gitignore files to vanilla and nextjs templates - Simplify root .gitignore to only Nix artifacts - Update styling for consistent visual identity across templates - Update README to reflect Tailwind inclusion and flat config
38 lines
304 B
Text
38 lines
304 B
Text
# Dependencies
|
|
node_modules
|
|
|
|
# Next.js build output
|
|
.next
|
|
out
|
|
|
|
# Production
|
|
build
|
|
dist
|
|
|
|
# Nix
|
|
.direnv
|
|
result
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|
|
*.log
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Bun
|
|
bun.lockb
|
|
|
|
# Environment
|
|
.env
|
|
.env*.local
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|