1 Star 0 Fork 0

白日梦想家/MusicApp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.js 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
白日梦想家 提交于 2023-06-12 10:02 . update
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
import styleImport, { VantResolve } from 'vite-plugin-style-import';
export default defineConfig({
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
plugins: [
vue(),
styleImport({
resolves: [VantResolve()],
libs: [
{
libraryName: 'vant',
esModule: true,
resolveStyle: name => `../es/${name}/style`
}
]
}),
],
base: './',
server: {
host: '0.0.0.0',
port: 4000,
},
build: {
rollupOptions: {
output: {
manualChunks(id) { // 分包
if (id.includes('node_modules')) {
return id.toString().split('node_modules/')[1].split('/')[0].toString();
}
}
}
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/tk1208/MusicApp.git
git@gitee.com:tk1208/MusicApp.git
tk1208
MusicApp
MusicApp
master

搜索帮助