3 changed files with 48 additions and 14 deletions
@ -1,14 +1,35 @@ |
|||||
/.idea |
/.idea |
||||
/dist |
/dist |
||||
/node_modules |
/node_modules |
||||
/data/kuma.db |
/data |
||||
/.do |
/.do |
||||
**/.dockerignore |
**/.dockerignore |
||||
**/.git |
**/.git |
||||
**/.gitignore |
**/.gitignore |
||||
**/docker-compose* |
**/docker-compose* |
||||
**/Dockerfile* |
**/[Dd]ockerfile* |
||||
LICENSE |
LICENSE |
||||
README.md |
README.md |
||||
.editorconfig |
.editorconfig |
||||
.vscode |
.vscode |
||||
|
.eslint* |
||||
|
.stylelint* |
||||
|
/.github |
||||
|
package-lock.json |
||||
|
yarn.lock |
||||
|
app.json |
||||
|
|
||||
|
### .gitignore content (commented rules are duplicated) |
||||
|
|
||||
|
#node_modules |
||||
|
.DS_Store |
||||
|
#dist |
||||
|
dist-ssr |
||||
|
*.local |
||||
|
#.idea |
||||
|
|
||||
|
#/data |
||||
|
#!/data/.gitkeep |
||||
|
#.vscode |
||||
|
|
||||
|
### End of .gitignore content |
||||
|
@ -1,14 +1,14 @@ |
|||||
import { defineConfig } from 'vite' |
import legacy from "@vitejs/plugin-legacy" |
||||
import vue from '@vitejs/plugin-vue' |
import vue from "@vitejs/plugin-vue" |
||||
import legacy from '@vitejs/plugin-legacy' |
import { defineConfig } from "vite" |
||||
|
|
||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||
export default defineConfig({ |
export default defineConfig({ |
||||
plugins: [ |
plugins: [ |
||||
vue(), |
vue(), |
||||
legacy({ |
legacy({ |
||||
targets: ['ie > 11'], |
targets: ["ie > 11"], |
||||
additionalLegacyPolyfills: ['regenerator-runtime/runtime'] |
additionalLegacyPolyfills: ["regenerator-runtime/runtime"], |
||||
}) |
}), |
||||
] |
], |
||||
}) |
}) |
||||
|
Loading…
Reference in new issue