1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // var webpack = require('webpack');
- const path = require('path')
- function resolve(dir) {
- return path.join(__dirname, dir)
- }
- function publicPath(){
- if (process.env.NODE_ENV == 'production') {
- return "././";
- } else {
- return "/";
- }
- }
- // vue.config.js
- module.exports = {
- // publicPath:"././",
- publicPath: publicPath(),
- // 国际化配置 使用其它语言,默认情况下中文语言包依旧是被引入的
- configureWebpack: {
- // plugins: [
- // new webpack.NormalModuleReplacementPlugin(/element-ui[\/\\]lib[\/\\]locale[\/\\]lang[\/\\]zh-CN/, 'element-ui/lib/locale/lang/en')
- // ]
- resolve: {
- alias: {
- '@': resolve('src')
- }
- }
- },
- lintOnSave: false,
- devServer: {
- host: "0.0.0.0", //指定使用一个 host。默认是 localhost,这里默认值即可
- port: 8081, //指定端口
- hot: true, // 开启热更新
- https: false, // 是否开启https模式
- proxy: { // 请求代理服务器
- '/springbootus5uu': { //带上api前缀的
- target: 'http://localhost:8080/springbootus5uu/', //代理目标地址
- changeOrigin: true,
- secure: false,
- pathRewrite: { // 在发出请求后将/api替换为''空值,这样不影响接口请求
- '^/springbootus5uu': ''
- }
- }
- }
- },
- chainWebpack(config) {
- 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]'
- })
- .end()
- }
- }
|