更新皮肤分类功能,添加帮助页面和Yggdrasil教程
This commit is contained in:
231
.gitignore
vendored
231
.gitignore
vendored
@@ -1,131 +1,134 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
# Dependencies
|
||||
node_modules/
|
||||
.pnp
|
||||
.pnp.*
|
||||
.yarn/*
|
||||
!.yarn/patches
|
||||
!.yarn/plugins
|
||||
!.yarn/releases
|
||||
!.yarn/versions
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
# Testing
|
||||
coverage/
|
||||
|
||||
# next.js
|
||||
/.next/
|
||||
/out/
|
||||
# Production build outputs
|
||||
.next/
|
||||
out/
|
||||
build/
|
||||
dist/
|
||||
|
||||
# production
|
||||
/build
|
||||
# Environment variables
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
*.pem
|
||||
|
||||
# debug
|
||||
# Logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# env files (can opt-in for committing if needed)
|
||||
.env*
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
# .gitignore
|
||||
|
||||
# 依赖目录
|
||||
node_modules/
|
||||
|
||||
# Next.js 构建输出
|
||||
.next/
|
||||
out/
|
||||
|
||||
# 生产依赖
|
||||
dist/
|
||||
|
||||
# 缓存文件
|
||||
.cache/
|
||||
*.cache
|
||||
|
||||
# 环境变量
|
||||
.env*.local
|
||||
.env
|
||||
|
||||
# 系统文件
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# 日志文件
|
||||
*.log
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
logs/
|
||||
*.log
|
||||
|
||||
# 编辑器/IDE 配置
|
||||
# Editor directories and files
|
||||
.idea/
|
||||
.vscode/
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
||||
# 测试相关
|
||||
coverage/
|
||||
.nyc_output/
|
||||
|
||||
# TypeScript 编译输出
|
||||
*.js
|
||||
*.js.map
|
||||
!next.config.js
|
||||
|
||||
# Tailwind CSS
|
||||
*.css.map
|
||||
|
||||
# macOS 系统文件
|
||||
._*
|
||||
|
||||
# Windows 系统文件
|
||||
[Dd]esktop.ini
|
||||
|
||||
# 包管理器锁文件(根据你使用的包管理器选择)
|
||||
# yarn.lock # 如果使用 Yarn 请取消注释
|
||||
# package-lock.json # 如果使用 npm 请取消注释
|
||||
# pnpm-lock.yaml # 如果使用 pnpm 请取消注释
|
||||
|
||||
# Node.js 依赖
|
||||
node_modules/
|
||||
|
||||
# Next.js 特定构建输出
|
||||
.next/
|
||||
out/
|
||||
|
||||
# 环境变量
|
||||
.env*.local
|
||||
.env
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
|
||||
# Windows
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
|
||||
# Linux
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
# VS Code
|
||||
.vscode/
|
||||
|
||||
# IntelliJ IDEA
|
||||
.idea/
|
||||
# 保留 package-lock.json
|
||||
!package-lock.json
|
||||
# OS generated files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
Thumbs.db:encryptable
|
||||
nehahn/
|
||||
ehahn.db
|
||||
[Dd]esktop.ini
|
||||
*.cab
|
||||
*.msi
|
||||
*.msix
|
||||
*.msm
|
||||
*.msp
|
||||
*.lnk
|
||||
|
||||
# 忽略 npm 调试日志
|
||||
npm-debug.log*
|
||||
# TypeScript
|
||||
*.tsbuildinfo
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Optional stylelint cache
|
||||
.stylelintcache
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variable files
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.local
|
||||
|
||||
# parcel-bundler cache
|
||||
.cache
|
||||
.parcel-cache
|
||||
|
||||
# Next.js build output
|
||||
.next
|
||||
out
|
||||
|
||||
# Nuxt.js build / generate output
|
||||
.nuxt
|
||||
dist
|
||||
|
||||
# Gatsby files
|
||||
.cache/
|
||||
# Comment in the public line in if your project uses Gatsby and not Next.js
|
||||
# public
|
||||
|
||||
# vuepress build output
|
||||
.vuepress/dist
|
||||
|
||||
# vuepress v2.x temp and cache directory
|
||||
.temp
|
||||
.cache
|
||||
|
||||
# Docusaurus cache and generated files
|
||||
.docusaurus
|
||||
|
||||
# Serverless directories
|
||||
.serverless/
|
||||
|
||||
# FuseBox cache
|
||||
.fusebox/
|
||||
|
||||
# DynamoDB Local files
|
||||
.dynamodb/
|
||||
|
||||
# TernJS port file
|
||||
.tern-port
|
||||
|
||||
# Stores VSCode versions used for testing VSCode extensions
|
||||
.vscode-test
|
||||
|
||||
# yarn v2
|
||||
.yarn/cache
|
||||
.yarn/unplugged
|
||||
.yarn/build-state.yml
|
||||
.yarn/install-state.gz
|
||||
.pnp.*
|
||||
|
||||
# Vercel
|
||||
.vercel/
|
||||
|
||||
#保留重要文件
|
||||
!package-lock.json
|
||||
Reference in New Issue
Block a user