第一步

cnpm安装

cnpm install moment
cnpm install nice-try

第二步

webpack.config.js中修改配置,配置成https请求

devServer: {
        clientLogLevel: 'warning',
        https: true,
        hot: true
},

在代码中的修改位置总览:

module.exports = merge(baseWebpackConfig, {
    module: {
        rules: utils.styleLoaders({sourceMap: config.dev.cssSourceMap})
    },
    // cheap-module-eval-source-map is faster for development
    devtool: '#cheap-module-eval-source-map',
    devServer: {
        clientLogLevel: 'warning',
        https: true,
        hot: true
    },

第三步

在config目录下或者config.js中修改vue代理方式


        //使用代理
        proxyTable: {
            '/admin-web': {
                target: 'https://127.0.0.1:8443',
                changeOrigin: true,
                secure: false,
                pathRewrite: {
                    '^/admin-web': '/admin-web'
                },
				headers: {
					Referer: 'https://127.0.0.1:8443'
				}
            }
        },
Logo

前往低代码交流专区

更多推荐