chore: 初始化项目基础结构和资源文件
- 添加项目图标文件(app-icon.png、各平台图标) - 配置开发环境文件(.env、.nvmrc、.npmrc) - 添加静态资源文件(背景图片、字体、音频) - 初始化Tauri后端结构(build.rs、main.rs、模块文件) - 配置前端项目结构(TypeScript、Vue组件、样式) - 添加Node.js API服务基础结构 - 配置构建和开发工具(vite、prettier、gitignore)
This commit is contained in:
38
.gitignore
vendored
Normal file
38
.gitignore
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
node_modules/
|
||||
dist/
|
||||
dist-ssr/
|
||||
.DS_Store
|
||||
|
||||
*.local
|
||||
|
||||
# local env files
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Log files
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Editor directories and files
|
||||
.cache/
|
||||
.idea/
|
||||
.vscode/
|
||||
.vs/
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
dist/electron/
|
||||
auto-imports.d.ts
|
||||
components.d.ts
|
||||
src/types/auto-imports.d.ts
|
||||
src/types/components.d.ts
|
||||
.MyPrivateConfig
|
||||
release/
|
||||
build-output/
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user