2024-05-09 12:34:24 +00:00
|
|
|
|
import { fileURLToPath, URL } from 'node:url'
|
|
|
|
|
import { defineConfig, normalizePath } from 'vite'
|
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
|
import vueJsx from '@vitejs/plugin-vue-jsx'
|
2024-07-08 13:06:30 +00:00
|
|
|
|
|
2024-05-09 12:34:24 +00:00
|
|
|
|
import { createMpaPlugin, createPages } from 'vite-plugin-virtual-mpa'
|
2024-07-08 13:06:30 +00:00
|
|
|
|
|
2024-05-09 12:34:24 +00:00
|
|
|
|
import AutoImport from 'unplugin-auto-import/vite'
|
|
|
|
|
import Components from 'unplugin-vue-components/vite'
|
|
|
|
|
import Icons from 'unplugin-icons/vite'
|
|
|
|
|
import IconsResolver from 'unplugin-icons/resolver'
|
|
|
|
|
|
|
|
|
|
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
|
|
|
|
|
|
|
|
|
|
const isProd = process.env.NODE_ENV === 'production'
|
|
|
|
|
|
|
|
|
|
const pages = createPages([
|
|
|
|
|
{
|
|
|
|
|
name: 'management',
|
|
|
|
|
filename: isProd ? 'management.html' : 'src/management/index.html',
|
|
|
|
|
template: 'src/management/index.html',
|
|
|
|
|
entry: '/src/management/main.js'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'render',
|
|
|
|
|
filename: isProd ? 'render.html' : 'src/render/index.html',
|
|
|
|
|
template: 'src/render/index.html',
|
|
|
|
|
entry: '/src/render/main.js'
|
|
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
const mpaPlugin = createMpaPlugin({
|
|
|
|
|
pages,
|
|
|
|
|
verbose: true,
|
|
|
|
|
rewrites: [
|
|
|
|
|
{
|
|
|
|
|
from: /render/,
|
|
|
|
|
to: () => normalizePath('/src/render/index.html')
|
|
|
|
|
},
|
2024-06-11 08:04:00 +00:00
|
|
|
|
{
|
|
|
|
|
from: /management\/preview/,
|
|
|
|
|
to: () => normalizePath('/src/render/index.html')
|
|
|
|
|
},
|
2024-05-09 12:34:24 +00:00
|
|
|
|
{
|
|
|
|
|
from: /\/|\/management\/.?/,
|
|
|
|
|
to: () => normalizePath('/src/management/index.html')
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
optimizeDeps: {
|
|
|
|
|
include: [
|
|
|
|
|
'lodash-es',
|
|
|
|
|
'async-validator',
|
|
|
|
|
'vuedraggable',
|
|
|
|
|
'element-plus/es',
|
|
|
|
|
'@wangeditor/editor-for-vue',
|
|
|
|
|
'element-plus/es/components/*/style/index',
|
|
|
|
|
'element-plus/dist/locale/zh-cn.mjs',
|
|
|
|
|
'clipboard',
|
|
|
|
|
'qrcode',
|
|
|
|
|
'moment',
|
2024-07-10 06:05:41 +00:00
|
|
|
|
'moment/locale/zh-cn',
|
|
|
|
|
'echarts',
|
|
|
|
|
'nanoid',
|
|
|
|
|
'yup',
|
|
|
|
|
'crypto-js/sha256',
|
|
|
|
|
'element-plus/es/locale/lang/zh-cn',
|
2024-09-03 07:54:42 +00:00
|
|
|
|
'node-forge',
|
|
|
|
|
'@logicflow/core',
|
|
|
|
|
'@logicflow/extension'
|
2024-05-09 12:34:24 +00:00
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
plugins: [
|
|
|
|
|
vue(),
|
|
|
|
|
vueJsx(),
|
|
|
|
|
AutoImport({
|
|
|
|
|
resolvers: [
|
|
|
|
|
ElementPlusResolver(),
|
|
|
|
|
// Auto import icon components
|
|
|
|
|
IconsResolver({
|
|
|
|
|
prefix: 'Icon'
|
|
|
|
|
})
|
|
|
|
|
]
|
|
|
|
|
}),
|
|
|
|
|
Components({
|
|
|
|
|
resolvers: [
|
|
|
|
|
ElementPlusResolver({
|
|
|
|
|
importStyle: 'sass'
|
|
|
|
|
}),
|
|
|
|
|
// Auto register icon components
|
|
|
|
|
IconsResolver({
|
|
|
|
|
enabledCollections: ['ep']
|
|
|
|
|
})
|
|
|
|
|
]
|
|
|
|
|
}),
|
|
|
|
|
Icons({
|
|
|
|
|
autoInstall: true
|
|
|
|
|
}),
|
|
|
|
|
mpaPlugin
|
|
|
|
|
],
|
|
|
|
|
resolve: {
|
|
|
|
|
alias: {
|
|
|
|
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
|
|
|
|
'@management': fileURLToPath(new URL('./src/management', import.meta.url)),
|
|
|
|
|
'@materials': fileURLToPath(new URL('./src/materials', import.meta.url)),
|
|
|
|
|
'@render': fileURLToPath(new URL('./src/render', import.meta.url))
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
appType: 'mpa',
|
|
|
|
|
css: {
|
|
|
|
|
preprocessorOptions: {
|
|
|
|
|
scss: {
|
|
|
|
|
additionalData: `@use "@/management/styles/element-variables.scss" as *;`
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
server: {
|
|
|
|
|
port: 8080,
|
|
|
|
|
proxy: {
|
|
|
|
|
'/api': {
|
|
|
|
|
target: 'http://127.0.0.1:3000',
|
2024-09-12 14:10:18 +00:00
|
|
|
|
changeOrigin: true
|
|
|
|
|
},
|
|
|
|
|
'/exportfile': {
|
|
|
|
|
target: 'http://127.0.0.1:3000',
|
2024-05-09 12:34:24 +00:00
|
|
|
|
changeOrigin: true
|
2024-07-18 02:21:09 +00:00
|
|
|
|
},
|
|
|
|
|
// 静态文件的默认存储文件夹
|
|
|
|
|
'/userUpload': {
|
|
|
|
|
target: 'http://127.0.0.1:3000',
|
|
|
|
|
changeOrigin: true
|
2024-05-09 12:34:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
build: {
|
2024-07-08 13:06:30 +00:00
|
|
|
|
rollupOptions: {
|
|
|
|
|
output: {
|
|
|
|
|
assetFileNames: '[ext]/[name]-[hash].[ext]',
|
|
|
|
|
chunkFileNames: 'js/[name]-[hash].js',
|
|
|
|
|
entryFileNames: 'js/[name]-[hash].js',
|
|
|
|
|
manualChunks(id) {
|
|
|
|
|
// 建议根据项目生产实际情况进行优化,部分可走cdn或进行小资源包合并
|
|
|
|
|
if (id.includes('element-plus')) {
|
|
|
|
|
return 'element-plus'
|
|
|
|
|
}
|
|
|
|
|
if (id.includes('wangeditor')) {
|
|
|
|
|
return 'wangeditor'
|
|
|
|
|
}
|
|
|
|
|
if (id.includes('node-forg')) {
|
|
|
|
|
return 'node-forg'
|
|
|
|
|
}
|
|
|
|
|
if (id.includes('echarts')) {
|
|
|
|
|
return 'echarts'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (id.includes('node_modules')) {
|
|
|
|
|
return 'packages'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-09 12:34:24 +00:00
|
|
|
|
}
|
|
|
|
|
})
|