mirror of
https://github.com/2234839/web-font.git
synced 2025-04-06 05:25:44 +08:00
12 lines
248 B
TypeScript
12 lines
248 B
TypeScript
import { defineConfig } from "vite";
|
|
import vue from "@vitejs/plugin-vue";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
build: {
|
|
outDir: "../backend/.malagu/frontend/dist/",
|
|
emptyOutDir: true,
|
|
},
|
|
});
|