javascript 在本地计算机上工作时无法分析源Map

ljsrvy3e  于 2023-11-15  发布在  Java
关注(0)|答案(2)|浏览(109)

在./node_modules/timeago.js/esm/index.js模块警告(来自./node_modules/react-scripts/node_modules/source-map-loader/dist/cjs.js)中出错:无法从“/Users/mayankrawat/Desktop/Development/maps/frontend/node_modules/timeago.js/src/index.ts”文件中解析源Map:错误:ENOENT:没有这样的文件或目录,打开“/Users/mayankrawat/Desktop/Development/maps/frontend/node_modules/timeago.js/src/index.ts”
我不知道为什么我在启动React应用程序时会出现这个错误。

kq0g1dla

kq0g1dla1#

这似乎是一个bugCRA 5.0.你可以忽略它:创建一个.env文件在你的项目的根目录(旁边的package.json文件).然后添加GENERATE_SOURCEMAP=false到它.

uurity8g

uurity8g2#

我使用了一种不同的解决方法,通过创建一个config-overrides.js

module.exports = function override(config, env) {
    // https://github.com/facebook/create-react-app/discussions/11767
    console.log("config-overrides.js: Ignoring source map warning https://github.com/facebook/create-react-app/discussions/11767");
    config.ignoreWarnings = [/Failed to parse source map/];

    return config;
};

字符串

相关问题