:8889/src/utils/CommonUtils:1 Failed to load resource: the server responded with a status of 404 (Not Found)
时间: 2023-11-01 20:58:23 浏览: 74
小程序报错 WAService.js:3 Uncaught Error: module "src/utils/utils.js" is not defined
根据提供的引用内容,您的问题是关于加载资源文件时出现404错误的问题。根据引用[1]中的信息,您在页面地址中加载了"src/main/welcome/welcome"页面,并且需要加载"src/utils/utils.js"文件。根据引用中的代码,您配置了webpack的resolve.alias来解析路径,并且将"@": resolve('src')。这意味着您可以使用@来代替src目录的路径。根据引用中的配置,您的静态资源路径被设置为"./static"。因此,您应该将"src/utils/utils.js"的路径更改为"@/utils/utils.js"。
阅读全文