fonts-vault/.dockerignore
bo.yu 30f7c7bd53 chore: 更新项目配置和依赖,优化Docker部署
- 更新Next.js到16.x,启用Turbopack并移除webpack配置
- 重构Dockerfile以使用standalone输出,简化部署流程
- 移除全局middleware,改为在admin layout中检查会话
- 更新环境变量和配置文件,移除生产环境数据库忽略
- 将多个页面从ISR改为动态渲染,避免构建时数据库查询
- 更新字体API和CSS服务逻辑,修复类型问题
- 更新依赖版本和TypeScript配置
2026-02-24 09:56:45 +08:00

53 lines
478 B
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 依赖
node_modules
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# Next.js
.next
out
build
# LICENSE 文件(避免构建错误)
**/LICENSE
**/LICENSE.txt
**/LICENSE.md
# 测试
coverage
# 环境变量
.env*.local
.env.development
# 数据库(保留 prod.db
data/dev.db
data/*.db-shm
data/*.db-wal
# 日志
logs
*.log
# Git
.git
.gitignore
# IDE
.vscode
.idea
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# 其他
.trae
*.pem
.vercel
README.md