add batch update songs

This commit is contained in:
2023-12-18 14:19:11 +08:00
parent 4a85eaaa07
commit ddc84cbbdc
7 changed files with 3521 additions and 716 deletions

23
vite.config.mts Normal file
View 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': {},
},
})