webpack Error:Prevent writing to file that only different in casing or query string from already written file. reactjs laravel

uklbhaso  于 2023-04-21  发布在  Webpack
关注(0)|答案(3)|浏览(1104)

我正在做一个laravel reactjs项目,当我运行npm run dev命令时,编译卡在95%,并给予以下错误。我检查了整个项目,没有文件调用大小写敏感的名称,所有图像都用小写字母调用。

Error: Prevent writing to file that only differs in casing or query string from already written file.
This will lead to a race-condition and corrupted files on case-insensitive file systems.
/media/public/images/user-4.jpg
/media/public/images/user-4.jpg

React:17.0.1
Webpack:5.21.2
节点:14.15.2

zed5wv10

zed5wv101#

我有同样的问题使用小写字母,它解决了

wz3gfoph

wz3gfoph2#

我得到了一个类似的错误.解决方法如下

/media/public/images/user-4.jpg
/media/public/images/user-4.jpg

重写
[name]user-4.jpg
我觉得你的问题在于道路。

8wigbo56

8wigbo563#

在我的例子中,我在webpack.config.js中有两个入口点,并且错误地没有修改第二个入口点。
如此多变

entry: { main: './src/index.tsx', another: './src/index.tsx' }

entry: { main: './src/index.tsx', another: './src/someOtherIndex.tsx' }

修正错误

相关问题