Bootstrap

vue项目打包之后部署访问静态资源全都404

问题

vue项目npm run build之后打包生成的dist文件夹,部署到服务器上访问静态资源全都404

解决

找到项目的vue.config.js文件

module.exports = {

        // 选项


        publicPath: "./",

        outputDir: "dist",

        assetsDir: "assets",

        indexPath: "index.html",

        runtimeCompiler: true
    }

;