1。cnpm安装依赖

sudo cnpm install moment
sudo cnpm install nice-try

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

  devServer: {
        contentBase: path.join(__dirname, 'dist'),
        publicPath: '/',
        compress: true,
        disableHostCheck: true,
        historyApiFallback: true,
        **https: true,
        port: 443**
    },

3。在src中的config.js中设置请求的基础地址即可

Logo

前往低代码交流专区

更多推荐