Error reading webpack-stats.json
See original GitHub issueI followed the instructions to build Doccano from source on my Windows laptop. Everything ran with no errors. But when I tried to visit the server on my browser I was met with the error.
Error reading C:\Users\oekenta\doccano\app\server\static\webpack-stats.json
When I go to that file location it is indeed the case that this file does not exist. Is this file necessary?
So when / where was this file supposed to have been created?
Can I stop the program from trying to use it? Or is there a way I can create the file myself?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:6 (2 by maintainers)
Top Results From Across the Web
django - Error reading webpack-stats.json. Are you sure ...
I installed django with Vue and got this eror in runtime: Error reading webpack-stats.
Read more >Error reading webpack-stats.json. Are you sure ...
How am I supposed to fix this issue? This issue comes ones very often (not every single time). or so. How can I...
Read more >[Solved]-Error reading webpack-stats.json. Are you sure ...
Coding example for the question Error reading webpack-stats.json. Are you sure webpack has generated the file and the path is correct?-Vue.js.
Read more >IOError: Error reading /edx/var/edxapp/staticfiles ...
Hi there. I am having a problem with cms, this is my log file: IOError: Error reading /edx/var/edxapp/staticfiles/fcb6e7cbba/webpack-stats.json. Are you sure ...
Read more >Error reading webpack-stats.json. Are you sure ...
Javascript Required. Kindly enable Javascript. · Error reading webpack-stats.json. Are you sure webpack has generated the file and the path is ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Did you run the webpack server? https://github.com/doccano/doccano/issues/439#issuecomment-552515746
I tried this and it worked:
cd app/server/static
npm install
npm start
This will start the webpack server on port 8080. Then run the django server.
Thank you @prakhar9998 for your nice support!