1 Star 1 Fork 0

aics/qve-admin-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.js 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
aics 提交于 2022-04-20 14:20 . qve 0.3.9
/**
* 扩展配置
*/
import vue from '@vitejs/plugin-vue';
//import legacy from '@vitejs/plugin-legacy';
//import json from '@rollup/plugin-json'; //IE兼容处理
//import visualizer from 'rollup-plugin-visualizer'; // 打包分析
import { resolve } from 'path'; // 主要用于alias文件路径别名
// 是否为生产环境
// const isProduction = process.env.NODE_ENV === 'production';
module.exports = {
base: '/v4/',
// server: {
// port: 8080
// },
build: {
outDir: './example'
},
resolve: {
alias: {
'@': resolve('src'),
// 带完整组件编译执行
vue: 'vue/dist/vue.esm-bundler.js'
}
},
plugins: [
vue({
template: {
isProduction: true
}
})
// legacy({
// // 兼容IE targets: ['defaults', 'not IE 11'],
// targets: ['ie >= 10'],
// additionalLegacyPolyfills: ['regenerator-runtime/runtime'],
// }),
// // resolve({
// // extensions: ['.vue', '.js', '.css'],
// // }),
// // vue({
// // template: {
// // isProduction: true,
// // },
// // }),
// // postcss({
// // extract: 'bundle.css',
// // }),
//json读取
// json(),
// 拷贝
// copy({
// targets: [{ src: 'src/assets/*', dest: 'dist/assets' }],
// }),
]
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qve/qve-admin-template.git
git@gitee.com:qve/qve-admin-template.git
qve
qve-admin-template
qve-admin-template
master

搜索帮助