Vue CLI 3.3+版本 build后打开index.html 文件空白的解决方案

Vue CLI 3.3+版本 build后打开index.html 文件空白,在控制台里查看原因,发现是js文件丢失引起的,下面上解决方案

在package-lock.json的同级目录下,新建一个文件 命名为 vue.config.js

在官网的解释是,设置 publicPath:'./'即可使用相对路径,但是实际测试发现,设置为 ./ 无效,但是发现设置成  ././ 两个./的时候,再次编译,发现index.html里的引用变成相对路径了,可能Vue cli3.3自己吞掉了头两个字符吧 ╮(╯▽╰)╭

输入一下内容:

const webpack = require('webpack')
module.exports = {
    //部署应用包时的基本 URL
     publicPath: process.env.NODE_ENV === "production" ? "././" : "/",
    //当运行 vue-cli-service build 时生成的生产环境构建文件的目录
    outputDir: 'dist',
    //放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
    assetsDir: 'assets',
    // eslint-loader 是否在保存的时候检查 安装@vue/cli-plugin-eslint有效
    lintOnSave: true,
    //是否使用包含运行时编译器的 Vue 构建版本。设置true后你就可以在使用template
    runtimeCompiler: true,
    // 生产环境是否生成 sourceMap 文件 sourceMap的详解请看末尾  
    productionSourceMap: true,
    configureWebpack: config => {
        if (process.env.NODE_ENV === 'production') {
            // 为生产环境修改配置...
        } else {
            // 为开发环境修改配置...
        }
    },
    // css相关配置
    css: {
        // 是否使用css分离插件 ExtractTextPlugin 生产环境下是true,开发环境下是false
        extract: true,
        // 开启 CSS source maps?
        sourceMap: false,
        // css预设器配置项
        loaderOptions: {},
        // 启用 CSS modules for all css / pre-processor files.
        modules: false
    },
    // webpack-dev-server 相关配置
    devServer: { // 设置代理
        hot: true, //热加载
        host: '0.0.0.0', //ip地址
        port: 8085, //端口
        https: false, //false关闭https,true为开启
        open: true, //自动打开浏览器
        proxy: {
            '/api': { //本地 
                target: 'xxx',
                // 如果要代理 websockets
                ws: true,
                changeOrigin: true
            },
            '/test': { //测试
                target: 'xxx'
            },
            '/pre': { //预发布
                target: 'xxx'
            },
            '/pro': { //正式
                target: 'xxx'
            }
        }
    },
    pluginOptions: { // 第三方插件配置
        // ...
    }
}

不得不吐槽一下,Vue 3.3+封装过度,让一些设置反而不方便了。

原创文章 3 获赞 5 访问量 107

猜你喜欢

转载自blog.csdn.net/smildwind/article/details/106129886
今日推荐