mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-06 18:36:55 +08:00
add batch update songs
This commit is contained in:
23
vite.config.mts
Normal file
23
vite.config.mts
Normal file
@@ -0,0 +1,23 @@
|
||||
// vite.config.ts
|
||||
import { defineConfig } from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
import path from 'path'
|
||||
import svgLoader from 'vite-svg-loader'
|
||||
import vueJsx from '@vitejs/plugin-vue-jsx';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [vue({
|
||||
script: {
|
||||
propsDestructure: true,
|
||||
defineModel: true
|
||||
}
|
||||
}), svgLoader(), vueJsx()],
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': path.resolve(__dirname, 'src'),
|
||||
},
|
||||
},
|
||||
define: {
|
||||
'process.env': {},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user