2023-11-22 15:12:56 +08:00
|
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
2023-11-22 18:30:06 +08:00
|
|
|
|
import path from 'path'
|
2023-11-22 15:12:56 +08:00
|
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [vue()],
|
|
|
|
|
server: { // ← ← ← ← ← ←
|
|
|
|
|
host: '0.0.0.0' // ← 新增内容 ←
|
2023-11-22 18:30:06 +08:00
|
|
|
|
},
|
|
|
|
|
resolve:{
|
|
|
|
|
//别名配置,引用src路径下的东西可以通过@如:import Layout from '@/layout/index.vue'
|
|
|
|
|
alias: {
|
|
|
|
|
'@': path.resolve(__dirname, 'src')
|
|
|
|
|
}
|
2023-11-23 19:39:47 +08:00
|
|
|
|
},
|
|
|
|
|
optimizeDeps: {
|
|
|
|
|
// 开发时 解决这些commonjs包转成esm包
|
|
|
|
|
include: [
|
|
|
|
|
"@jiaminghi/c-render",
|
|
|
|
|
"@jiaminghi/c-render/lib/plugin/util",
|
|
|
|
|
"@jiaminghi/charts/lib/util/index",
|
|
|
|
|
"@jiaminghi/charts/lib/util",
|
|
|
|
|
"@jiaminghi/charts/lib/extend/index",
|
|
|
|
|
"@jiaminghi/charts",
|
|
|
|
|
"@jiaminghi/color",
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
build: {
|
|
|
|
|
// 打包时需要另外处理的commonjs规范的包
|
|
|
|
|
commonjsOptions: {
|
|
|
|
|
include: [
|
|
|
|
|
/node_modules/, // 必须包含
|
|
|
|
|
],
|
|
|
|
|
},
|
2023-11-22 18:30:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-11-23 19:39:47 +08:00
|
|
|
|
|
2023-11-22 15:12:56 +08:00
|
|
|
|
})
|