- Added .ci/docker/ to .gitignore to exclude Docker CI files. - Set Next.js output configuration to "standalone" for optimized deployment. - Updated package-lock.json to include new optional dependency for Windows SWC binaries.
52 lines
432 B
Plaintext
52 lines
432 B
Plaintext
# dependencies
|
|
node_modules/
|
|
|
|
# next.js
|
|
.next/
|
|
out/
|
|
|
|
# production
|
|
build/
|
|
dist/
|
|
|
|
# turbo
|
|
.turbo/
|
|
|
|
# logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# env files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# cache
|
|
.cache/
|
|
.parcel-cache/
|
|
|
|
# coverage
|
|
coverage/
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# misc
|
|
.vercel/
|
|
tmp/
|
|
temp/
|
|
.ci/docker/
|