110 lines
1.3 KiB
Plaintext
110 lines
1.3 KiB
Plaintext
//* .gitignore
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# Dependency directories
|
|
node_modules/
|
|
jspm_packages/
|
|
|
|
# Production build
|
|
dist/
|
|
dist-ssr/
|
|
build/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# IDE and Editor files
|
|
.vscode/
|
|
!.vscode/extensions.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
*.lcov
|
|
|
|
# nyc test coverage
|
|
.nyc_output
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# parcel-bundler cache (https://parceljs.org/)
|
|
.cache
|
|
.parcel-cache
|
|
|
|
# Vite cache
|
|
.vite/
|
|
|
|
# Vue.js specific
|
|
.vue/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Test coverage
|
|
tests/unit/coverage/
|
|
tests/e2e/coverage/
|
|
|
|
# Local Netlify folder
|
|
.netlify
|
|
|
|
# AI Marketing Frontend specific
|
|
/public/runtime-env.js.backup
|
|
/src/assets/temp/
|
|
/public/images/uploads/
|
|
*.backup
|
|
|
|
# Vue DevTools
|
|
.vue-devtools
|
|
|
|
# Cypress
|
|
cypress/videos/
|
|
cypress/screenshots/
|
|
|
|
# ESLint
|
|
.eslintcache
|
|
|
|
# Stylelint
|
|
.stylelintcache |