tradeScreen/vite.config.js

51 lines
1.1 KiB
JavaScript
Raw Permalink Normal View History

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-12-07 19:05:27 +08:00
import postCssPxToRem from 'postcss-pxtorem'
2023-11-22 15:12:56 +08:00
export default defineConfig({
plugins: [vue()],
server: { // ← ← ← ← ← ←
host: '0.0.0.0' // ← 新增内容 ←
2023-11-22 18:30:06 +08:00
},
2023-12-07 19:05:27 +08:00
resolve: {
2023-11-22 18:30:06 +08:00
//别名配置引用src路径下的东西可以通过@如import Layout from '@/layout/index.vue'
alias: {
'@': path.resolve(__dirname, 'src')
2023-12-07 19:05:27 +08:00
},
},
css: {
postcss: {
plugins: [
postCssPxToRem({
rootValue: 192,
propList: ['*'],
})
]
2023-11-22 18:30:06 +08:00
}
2023-11-23 19:39:47 +08:00
},
2023-12-07 19:05:27 +08:00
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
})