forked from NextJSTemplates/solid-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
38 lines (29 loc) · 903 Bytes
/
.gitignore
File metadata and controls
38 lines (29 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 查看 https://help.github.com/articles/ignoring-files/ 了解更多关于忽略文件的信息
# 依赖项
/node_modules # Node.js 模块目录
/.pnp # Plug'n'Play 依赖目录
.pnp.js # Plug'n'Play 配置文件
.vscode # Visual Studio Code 配置目录
# 测试
/coverage # 测试覆盖率报告目录
# Next.js
/.next/ # Next.js 构建输出目录
/out/ # Next.js 静态导出目录
# Contentlayer
.contentlayer # Contentlayer 生成的内容目录
# 生产环境
/build # 生产环境构建输出目录
# 杂项
.DS_Store # macOS 系统文件
*.pem # PEM 证书文件
# 调试日志
npm-debug.log* # npm 调试日志
yarn-debug.log* # Yarn 调试日志
yarn-error.log* # Yarn 错误日志
.pnpm-debug.log* # pnpm 调试日志
# 本地环境文件
.env*.local # 本地环境变量文件
.env # 环境变量文件
# Vercel
.vercel # Vercel 部署配置文件
node_modules