1 Star 0 Fork 0

xiaosongzhuo/agv_ip_detector_vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
xiaosongzhuo 提交于 2024-02-26 17:12 . 2024年2月26日
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
import topLevelAwait from 'vite-plugin-top-level-await'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue(), vueJsx(),
AutoImport({
resolvers: [ElementPlusResolver()],
}),
Components({
resolvers: [ElementPlusResolver()],
}),
topLevelAwait({
promiseExportName:'__tla',
}),
],
resolve: {
alias: {
'@': './src'
}
},
server: {
hmr: true
},
build: {
rollupOptions: {
output: {
manualChunks(modulePath) {
if (modulePath.includes('node_modules')) {
// 将依赖的第三方库打包到单独的代码块中
return 'vendor';
} else if (modulePath.includes('src/components')) {
// 将 src/components 目录下的组件打包到单独的代码块中
return 'components';
}
},
},
},
},
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhuo-xiaosong/agv_ip_detector_vue.git
git@gitee.com:zhuo-xiaosong/agv_ip_detector_vue.git
zhuo-xiaosong
agv_ip_detector_vue
agv_ip_detector_vue
master

搜索帮助