feat: 内置酷狗搜索/排行榜/热门搜索 + 内嵌歌词提取ID3v2 USLT/SYLT

This commit is contained in:
miao-moe
2026-06-20 12:47:40 +08:00
parent b3cb3f1faa
commit da604cd842
76 changed files with 21349 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import wasm from 'vite-plugin-wasm'
import svgLoader from 'vite-svg-loader'
import { nodePolyfills } from 'vite-plugin-node-polyfills'
import { resolve } from 'path'
export default defineConfig({
plugins: [
vue(),
vueJsx(),
wasm(),
svgLoader(),
nodePolyfills()
],
resolve: {
alias: {
'@': resolve(__dirname, 'src'),
'@assets': resolve(__dirname, 'src/assets')
}
},
server: {
port: 1219,
host: '0.0.0.0',
open: false
},
build: {
outDir: 'dist',
sourcemap: true
}
})