first commit.

This commit is contained in:
2022-11-06 22:57:45 +08:00
commit 52a3ac8a84
10 changed files with 1514 additions and 0 deletions

11
vite.config.js Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from "vite"
import legacy from "@vitejs/plugin-legacy"
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
legacy({
targets: ["defaults", "not IE 11"],
}),
],
})