3 changed files with 48 additions and 14 deletions
@ -1,14 +1,35 @@ |
|||
/.idea |
|||
/dist |
|||
/node_modules |
|||
/data/kuma.db |
|||
/data |
|||
/.do |
|||
**/.dockerignore |
|||
**/.git |
|||
**/.gitignore |
|||
**/docker-compose* |
|||
**/Dockerfile* |
|||
**/[Dd]ockerfile* |
|||
LICENSE |
|||
README.md |
|||
.editorconfig |
|||
.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 vue from '@vitejs/plugin-vue' |
|||
import legacy from '@vitejs/plugin-legacy' |
|||
import legacy from "@vitejs/plugin-legacy" |
|||
import vue from "@vitejs/plugin-vue" |
|||
import { defineConfig } from "vite" |
|||
|
|||
// https://vitejs.dev/config/
|
|||
export default defineConfig({ |
|||
plugins: [ |
|||
vue(), |
|||
legacy({ |
|||
targets: ['ie > 11'], |
|||
additionalLegacyPolyfills: ['regenerator-runtime/runtime'] |
|||
}) |
|||
] |
|||
targets: ["ie > 11"], |
|||
additionalLegacyPolyfills: ["regenerator-runtime/runtime"], |
|||
}), |
|||
], |
|||
}) |
|||
|
Loading…
Reference in new issue