当我构建我的Vue应用程序时,所有已编译的文件(vendor.js,client.js,manifest.js,client.css)都在index.html内调用,其根路径为/vendor.js,/ client.js, manifest.js和/client.js
我想在项目中指定一个根路径,以便使用我的服务器路径进行编译。
有可能吗?
答案 0 :(得分:1)
您可以通过更改webpack配置中的输出参数来设置公共路径。
https://webpack.js.org/configuration/output/#output-publicpath
publicPath: "https://cdn.example.com/assets/", // CDN (always HTTPS)
publicPath: "//cdn.example.com/assets/", // CDN (same protocol)
publicPath: "/assets/", // server-relative
publicPath: "assets/", // relative to HTML page
publicPath: "../assets/", // relative to HTML page
publicPath: "", // relative to HTML page (same directory)