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