uptime-kuma/vite.config.js

15 lines
349 B
JavaScript
Raw Normal View History

2021-08-08 16:24:05 +00:00
import legacy from "@vitejs/plugin-legacy"
import vue from "@vitejs/plugin-vue"
import { defineConfig } from "vite"
2021-06-24 13:42:03 +00:00
// https://vitejs.dev/config/
export default defineConfig({
2021-08-08 16:24:05 +00:00
plugins: [
vue(),
legacy({
targets: ["ie > 11"],
additionalLegacyPolyfills: ["regenerator-runtime/runtime"]
})
]
2021-06-24 13:42:03 +00:00
})