[+] 改名

This commit is contained in:
acgist
2023-02-05 17:31:56 +08:00
parent e43f9283e7
commit dbae093272
33 changed files with 11 additions and 11 deletions

View File

@@ -0,0 +1,17 @@
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
host: "0.0.0.0"
},
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
});