1 Star 0 Fork 27

依依剑雨/VariantAdmin

forked from vdpAdmin/VariantAdmin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 3.21 KB
一键复制 编辑 原始数据 按行查看 历史
'use strict'
const path = require('path')
const defaultSettings = require('./src/settings.js')
function resolve (dir) {
return path.join(__dirname, dir)
}
const appName = defaultSettings.title || 'Variant Admin' // page title
const serverUrl = defaultSettings.serverUrl || 'http://localhost:8080'
const IS_PROD = process.env.NODE_ENV === 'production'
const HtmlWebpackPlugin = require('html-webpack-plugin')
const CompressionPlugin = require('compression-webpack-plugin')
const mvdir = require('mvdir');
if (IS_PROD) {
mvdir('index_template/index_prod.html', 'public/index.html', { copy: true });
} else {
mvdir('index_template/index_dev.html', 'public/index.html', { copy: true });
}
module.exports = {
assetsDir: './',
/* 开启vue运行时模板编译功能!! */
runtimeCompiler: true,
lintOnSave: false,
productionSourceMap: false,
/* 指定node_modules目录中需要做babel转译的依赖库 */
transpileDependencies: [
'element-ui',
],
css: {
loaderOptions: {
scss: {
/* 自动引入全局scss文件 */
prependData: `@import "./src/styles/global.scss";`
}
}
},
devServer: {
host: 'localhost',
port: 8088,
open: true,
proxy: {
'/api': {
target: serverUrl,
// ws: true, //是否proxy websockets
secure: false, //https设置为true
changeOrigin: true, //是否需要支持跨域处理
pathRewrite: {
'^/api': ''
}
}
},
public: '127.0.0.1:8088'
},
configureWebpack: (config) => {
config.name = appName
config.devtool = 'source-map' /* 用于IDEA调试Vue项目js代码 */
//config.devtool = 'eval' /* 加快开发环境构建速度 */
config.resolve.alias['@'] = resolve('src')
if (IS_PROD) { /* 仅生产环境使用 */
config.plugins = [
...config.plugins,
/* 将css和js注入index.html */
new HtmlWebpackPlugin({
title: appName,
template: './public/index.html',
chunks: ['app'], /* 只注入app*.js和app*.css以及chunk-vendors*.js和chunk-vendors*.css!! */
}),
/* gzip压缩js、css文件 */
/* 注意:如果build出现Cannot read property ‘tapPromise‘ of undefined错误,需要安装低版本插件,解决方法如下:
1.先卸载插件:npm uninstall compression-webpack-plugin
2.安装指定版本插件:npm i -D [email protected]
*/
new CompressionPlugin({
test: /\.js$|\.css$/,
deleteOriginalAssets: false // 是否删除原文件
})
]
/* CDN打包,需要修改index.html加入CDN资源 */
config.externals = {
'vue': 'Vue',
'element-ui': 'ELEMENT',
'quill': 'Quill',
}
}
},
chainWebpack: config => {
/* 配置svg图标自动加载 begin */
config.module
.rule('svg')
.exclude.add(resolve('src/icons'))
.end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
/* 配置svg图标自动加载 end */
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mos/VariantAdmin.git
[email protected]:mos/VariantAdmin.git
mos
VariantAdmin
VariantAdmin
main

搜索帮助