Webpack creating json.gzip files in app root when using docker
See original GitHub issuehttps://github.com/webpack/webpack/issues/2223#issuecomment-216944768
Should we use cacheDirectory
to fix it?
Issue Analytics
- State:
- Created 7 years ago
- Comments:11 (9 by maintainers)
Top Results From Across the Web
How to serve webpack gzipped file in production using nginx.
Open /etc/nginx/conf.d provide below configuration . server { gzip on; gzip_static on; gzip_types text/plain text/css application/json application ...
Read more >"Create React App" with Docker - Stack Overflow
gzip files in the src directory. Any suggestions for getting this working correctly? reactjs · docker · webpack · docker-compose · livereload.
Read more >How to implement runtime environment variables with create ...
It will create a JavaScript file which puts environment variable values as an object which is assigned as a property of window object....
Read more >Dockerizing a React.js app - Rishabh Mishra
Let's create a file named Dockerfile in the root directory of the React application. Dockerfile. FROM node:14-alpine WORKDIR /app COPY package.
Read more >Docker : Run a React app in a docker - 2020 - BogoToBogo
Create React App (CRA) is a tool to create a blank React app using a single terminal ... Add the following docker-compose.yml file...
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
I’ve sent a PR to
babel-loader
now.Sounds good if you can make it work. Ideally I’d avoid using
node_modules
for cache though because people are going to measure it and complain CRA has too many dependencies. 😄