|
|
import pathNode from 'node:path'
|
|
|
|
|
|
import { defineConfig } from 'vite'
|
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
import vueDevTools from 'vite-plugin-vue-devtools'
|
|
|
import AutoImport from 'unplugin-auto-import/vite'
|
|
|
import Components from 'unplugin-vue-components/vite'
|
|
|
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
|
|
|
import path from 'path'
|
|
|
import Icons from 'unplugin-icons/vite'
|
|
|
import IconsResolver from 'unplugin-icons/resolver'
|
|
|
import Inspect from 'vite-plugin-inspect'
|
|
|
const pathSrc = path.resolve(__dirname, 'src')
|
|
|
// https://vite.dev/config/
|
|
|
export default defineConfig({
|
|
|
base: 'central-control',
|
|
|
plugins: [
|
|
|
vue(),
|
|
|
// vueDevTools(),
|
|
|
AutoImport({
|
|
|
// 自动导入 Vue 相关函数,如:ref, reactive, toRef 等
|
|
|
imports: ['vue', 'vue-router'],
|
|
|
resolvers: [
|
|
|
// 自动导入 Element Plus 相关函数,如:ElMessage, ElMessageBox... (带样式)
|
|
|
ElementPlusResolver(),
|
|
|
// Auto import icon components
|
|
|
// 自动导入图标组件
|
|
|
IconsResolver({
|
|
|
prefix: 'Icon',
|
|
|
}),
|
|
|
],
|
|
|
dts: path.resolve(pathSrc, 'auto-imports.d.ts'),
|
|
|
}),
|
|
|
Components({
|
|
|
resolvers: [
|
|
|
// Auto register icon components
|
|
|
// 自动注册图标组件
|
|
|
IconsResolver({
|
|
|
enabledCollections: ['ep'],
|
|
|
}),
|
|
|
ElementPlusResolver(),
|
|
|
],
|
|
|
dts: path.resolve(pathSrc, 'components.d.ts'),
|
|
|
}),
|
|
|
Icons({
|
|
|
autoInstall: true,
|
|
|
}),
|
|
|
Inspect(),
|
|
|
],
|
|
|
resolve: {
|
|
|
alias: {
|
|
|
// 设置别名
|
|
|
'@': pathNode.resolve(__dirname, './src'),
|
|
|
},
|
|
|
},
|
|
|
server: {
|
|
|
port: 9090,
|
|
|
host: true,
|
|
|
open: true,
|
|
|
proxy: {
|
|
|
'/jsonrpc': {
|
|
|
target: 'https://cd-lamp.ruixininfo.com',
|
|
|
changeOrigin: true,
|
|
|
secure: false,
|
|
|
},
|
|
|
},
|
|
|
},
|
|
|
})
|