Loading... # 引言 最近在写一个项目,想着打包测试一下跨域问题(没有使用代理),结果js和css报错404了,`<script defer="defer" src="/js/chunk-vendors.c81e1ed1.js">` 好多引用都是`/js/**` ![image.png](https://www.zunmx.top/usr/uploads/2024/07/229364291.png) # 解决方案 在vue.config.js中设置 ```js const { defineConfig } = require("@vue/cli-service"); module.exports = defineConfig({ transpileDependencies: true, publicPath: "./", // 设置为部署路径 }); ``` 关键配置`publicPath` 再次打包就是`./`当前目录了 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,请随意赞赏