代码拉取完成,页面将自动刷新
同步操作将从 张瑞鑫/oj-ui-vue3-arco 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import { resolve } from 'path';
import { pluginsList } from './config';
import { type ConfigEnv, loadEnv, type UserConfigExport } from 'vite';
import autoprefixer from 'autoprefixer';
import tailwindcss from 'tailwindcss';
export default ({ mode }: ConfigEnv): UserConfigExport => {
const { VITE_PORT, VITE_BASE } = loadEnv(mode, process.cwd());
return {
base: VITE_BASE,
// 路径别名
resolve: {
alias: {
'@': resolve(__dirname, 'src'),
'assets': resolve(__dirname, 'src/assets'),
'vue': 'vue/dist/vue.esm-bundler.js' // compile template
}
},
css: {
postcss: {
plugins: [tailwindcss, autoprefixer]
},
preprocessorOptions: {
less: {
modifyVars: {
hack: `true; @import (reference) "${resolve(
'src/assets/style/variables.less'
)}";`
},
// https://lesscss.org/usage/#less-options
math: 'parens-division',
javascriptEnabled: true
}
}
},
plugins: [pluginsList()],
// 依赖预构建-> https://cn.vitejs.dev/config/dep-optimization-options#dep-optimization-options
optimizeDeps: {
include: ['mitt', 'dayjs', 'axios', 'pinia', '@vueuse/core', 'vue-i18n'],
exclude: ['@iconify-icons/lets-icons']
},
server: {
// 允许跨域
cors: true,
// 监听所有地址
host: '0.0.0.0',
// 服务启动时是否自动打开浏览器
open: false,
// 端口号(这里使用了变量 VITE_PORT)
port: Number(VITE_PORT),
// 本地跨域代理-> 代理到服务器的接口地址
proxy: {
'/api': {
target: 'http://localhost:8101',
changeOrigin: true,
ws: true
}
},
// 预热文件以降低启动期间的初始页面加载时长
warmup: {
// 预热的客户端文件:首页、views、 components
clientFiles: ['./index.html', './src/{views,components}/*']
}
},
build: {
// 浏览器兼容目标
target: 'es2015',
// 是否生成 source map 文件
sourcemap: false,
rollupOptions: {
output: {
entryFileNames: 'static/js/[name]-[hash].js',
chunkFileNames: 'static/js/[name]-[hash].js',
assetFileNames: 'static/[ext]/[name]-[hash].[ext]',
compact: true,
// 自定义 chunk
manualChunks: {
arco: ['@arco-design/web-vue'],
chart: ['echarts', 'vue-echarts'],
vue: ['vue', 'vue-router', 'pinia', '@vueuse/core', 'vue-i18n']
}
}
},
// chunk 大小警告的限制
chunkSizeWarningLimit: 2000
}
};
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。