1 Star 0 Fork 99

hyerming/workflow AntV X6_1

forked from hyerming/workflow AntV X6 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.js 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
秋雨 提交于 2022-05-11 22:32 . 主要增加边的路径点vertices
import { defineConfig, loadEnv } from 'vite';
import createVitePlugins from './vite/plugins';
import { resolve } from 'path';
import config from './config';
// https://vitejs.dev/config/
export default defineConfig(({ command, mode }) => {
const env = loadEnv(mode, process.cwd());
return {
base: config[mode].basePath,
plugins: createVitePlugins(env, mode, command === 'build'),
resolve: {
alias: {
'~': resolve(__dirname, './'),
'@': resolve(__dirname, 'src'),
},
},
build: {
rollupOptions: {
input: {
main: resolve(__dirname, 'index.html'),
},
output: {
manualChunks: {
vue: ['vue'],
// axios: ['axios'],
x6: ['@antv/x6'],
'element-plus': ['element-plus'],
'crypto-js': ['crypto-js'],
'plus-icons-vue': ['@element-plus/icons-vue'],
},
},
},
// manualChunks: {
// dir: 'dist',
// external: ['axios', 'vue', '@antv/x6', 'element-plus', 'lodash'],
// },
},
server: {
cors: true, // 默认启用并允许任何源
open: true, // 在服务器启动时自动在浏览器中打开应用程序
proxy: {
'/dev-api': {
target: 'http://127.0.0.1/test/',
changeOrigin: true,
rewrite: path => path.replace(/^\/dev-api/, ''),
},
},
},
};
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/hyerming/zsflow-editor_1.git
git@gitee.com:hyerming/zsflow-editor_1.git
hyerming
zsflow-editor_1
workflow AntV X6_1
master

搜索帮助