From 2473bfef5b515fa74b94fd74ce56b593e5bea223 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E9=B9=8F?= Date: Wed, 18 Mar 2026 10:15:37 +0800 Subject: [PATCH] gitignore --- .gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c62ef3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +# 忽略打包后的静态资源(你的核心需求) +dist/ +build/ + +# 忽略依赖库 +node_modules/ +jspm_packages/ + +# 忽略日志文件 +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# 忽略本地环境变量文件(非常重要,保护隐私) +.env +.env.local +.env.*.local + +# 忽略系统生成的临时文件 +.DS_Store +Thumbs.db \ No newline at end of file