我的react文件夹结构如下
我没有使用过 create-react-app 版本。我尝试使用GENERATE_SOURCEMAP=false
. 但它没有用。
我在哪里可以找到 .map 文件。我怎样才能删除这些文件?
我找不到构建文件夹。我试过使用下面的脚本,但它无法删除源映射
"scripts": {
"start": "react-scripts start",
"build": "GENERATE_SOURCEMAP=false && npm run build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},