Files
taoyao/taoyao-client-web/vite.config.js
2023-02-06 20:57:12 +08:00

18 lines
344 B
JavaScript

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)),
},
}
});