11 lines
292 B
TypeScript
11 lines
292 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
build: {
|
|
outDir: 'D:\\Code\\EliteAIBoxMAUI\\EliteAIBoxMAUI\\Resources\\Raw\\wwwroot\\livestream', // 指定构建输出目录
|
|
},
|
|
})
|