| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  | 'use strict'; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  | const fs = require('fs'); | 
					
						
							|  |  |  |  | const evalSourceMapMiddleware = require('react-dev-utils/evalSourceMapMiddleware'); | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  | const noopServiceWorkerMiddleware = require('react-dev-utils/noopServiceWorkerMiddleware'); | 
					
						
							|  |  |  |  | const ignoredFiles = require('react-dev-utils/ignoredFiles'); | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  | const redirectServedPath = require('react-dev-utils/redirectServedPathMiddleware'); | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  | const paths = require('./paths'); | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  | const getHttpsConfig = require('./getHttpsConfig'); | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | const host = process.env.HOST || '0.0.0.0'; | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  | const sockHost = process.env.WDS_SOCKET_HOST; | 
					
						
							| 
									
										
										
										
											2023-09-04 09:50:14 +08:00
										 |  |  |  | const sockPath = process.env.WDS_SOCKET_PATH; // default: '/ws'
 | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  | const sockPort = process.env.WDS_SOCKET_PORT; | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  | module.exports = function (proxy, allowedHost) { | 
					
						
							| 
									
										
										
										
											2023-09-04 09:50:14 +08:00
										 |  |  |  |   const disableFirewall = | 
					
						
							|  |  |  |  |     !proxy || process.env.DANGEROUSLY_DISABLE_HOST_CHECK === 'true'; | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  |   return { | 
					
						
							|  |  |  |  |     // WebpackDevServer 2.4.3 introduced a security fix that prevents remote
 | 
					
						
							|  |  |  |  |     // websites from potentially accessing local content through DNS rebinding:
 | 
					
						
							|  |  |  |  |     // https://github.com/webpack/webpack-dev-server/issues/887
 | 
					
						
							|  |  |  |  |     // https://medium.com/webpack/webpack-dev-server-middleware-security-issues-1489d950874a
 | 
					
						
							|  |  |  |  |     // However, it made several existing use cases such as development in cloud
 | 
					
						
							|  |  |  |  |     // environment or subdomains in development significantly more complicated:
 | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  |     // https://github.com/facebook/create-react-app/issues/2271
 | 
					
						
							|  |  |  |  |     // https://github.com/facebook/create-react-app/issues/2233
 | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  |     // While we're investigating better solutions, for now we will take a
 | 
					
						
							|  |  |  |  |     // compromise. Since our WDS configuration only serves files in the `public`
 | 
					
						
							|  |  |  |  |     // folder we won't consider accessing them a vulnerability. However, if you
 | 
					
						
							|  |  |  |  |     // use the `proxy` feature, it gets more dangerous because it can expose
 | 
					
						
							|  |  |  |  |     // remote code execution vulnerabilities in backends like Django and Rails.
 | 
					
						
							|  |  |  |  |     // So we will disable the host check normally, but enable it if you have
 | 
					
						
							|  |  |  |  |     // specified the `proxy` setting. Finally, we let you override it if you
 | 
					
						
							|  |  |  |  |     // really know what you're doing with a special environment variable.
 | 
					
						
							| 
									
										
										
										
											2023-09-04 09:50:14 +08:00
										 |  |  |  |     // Note: ["localhost", ".localhost"] will support subdomains - but we might
 | 
					
						
							|  |  |  |  |     // want to allow setting the allowedHosts manually for more complex setups
 | 
					
						
							|  |  |  |  |     allowedHosts: disableFirewall ? 'all' : [allowedHost], | 
					
						
							|  |  |  |  |     headers: { | 
					
						
							|  |  |  |  |       'Access-Control-Allow-Origin': '*', | 
					
						
							|  |  |  |  |       'Access-Control-Allow-Methods': '*', | 
					
						
							|  |  |  |  |       'Access-Control-Allow-Headers': '*', | 
					
						
							|  |  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  |     // Enable gzip compression of generated files.
 | 
					
						
							|  |  |  |  |     compress: true, | 
					
						
							| 
									
										
										
										
											2023-09-04 09:50:14 +08:00
										 |  |  |  |     static: { | 
					
						
							|  |  |  |  |       // By default WebpackDevServer serves physical files from current directory
 | 
					
						
							|  |  |  |  |       // in addition to all the virtual build products that it serves from memory.
 | 
					
						
							|  |  |  |  |       // This is confusing because those files won’t automatically be available in
 | 
					
						
							|  |  |  |  |       // production build folder unless we copy them. However, copying the whole
 | 
					
						
							|  |  |  |  |       // project directory is dangerous because we may expose sensitive files.
 | 
					
						
							|  |  |  |  |       // Instead, we establish a convention that only files in `public` directory
 | 
					
						
							|  |  |  |  |       // get served. Our build script will copy `public` into the `build` folder.
 | 
					
						
							|  |  |  |  |       // In `index.html`, you can get URL of `public` folder with %PUBLIC_URL%:
 | 
					
						
							|  |  |  |  |       // <link rel="icon" href="%PUBLIC_URL%/favicon.ico">
 | 
					
						
							|  |  |  |  |       // In JavaScript code, you can access it with `process.env.PUBLIC_URL`.
 | 
					
						
							|  |  |  |  |       // Note that we only recommend to use `public` folder as an escape hatch
 | 
					
						
							|  |  |  |  |       // for files like `favicon.ico`, `manifest.json`, and libraries that are
 | 
					
						
							|  |  |  |  |       // for some reason broken when imported through webpack. If you just want to
 | 
					
						
							|  |  |  |  |       // use an image, put it in `src` and `import` it from JavaScript instead.
 | 
					
						
							|  |  |  |  |       directory: paths.appPublic, | 
					
						
							|  |  |  |  |       publicPath: [paths.publicUrlOrPath], | 
					
						
							|  |  |  |  |       // By default files from `contentBase` will not trigger a page reload.
 | 
					
						
							|  |  |  |  |       watch: { | 
					
						
							|  |  |  |  |         // Reportedly, this avoids CPU overload on some systems.
 | 
					
						
							|  |  |  |  |         // https://github.com/facebook/create-react-app/issues/293
 | 
					
						
							|  |  |  |  |         // src/node_modules is not ignored to support absolute imports
 | 
					
						
							|  |  |  |  |         // https://github.com/facebook/create-react-app/issues/1065
 | 
					
						
							|  |  |  |  |         ignored: ignoredFiles(paths.appSrc), | 
					
						
							|  |  |  |  |       }, | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  |     client: { | 
					
						
							|  |  |  |  |       webSocketURL: { | 
					
						
							|  |  |  |  |         // Enable custom sockjs pathname for websocket connection to hot reloading server.
 | 
					
						
							|  |  |  |  |         // Enable custom sockjs hostname, pathname and port for websocket connection
 | 
					
						
							|  |  |  |  |         // to hot reloading server.
 | 
					
						
							|  |  |  |  |         hostname: sockHost, | 
					
						
							|  |  |  |  |         pathname: sockPath, | 
					
						
							|  |  |  |  |         port: sockPort, | 
					
						
							|  |  |  |  |       }, | 
					
						
							|  |  |  |  |       overlay: { | 
					
						
							|  |  |  |  |         errors: true, | 
					
						
							|  |  |  |  |         warnings: false, | 
					
						
							|  |  |  |  |       }, | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2023-09-04 09:50:14 +08:00
										 |  |  |  |     devMiddleware: { | 
					
						
							|  |  |  |  |       // It is important to tell WebpackDevServer to use the same "publicPath" path as
 | 
					
						
							|  |  |  |  |       // we specified in the webpack config. When homepage is '.', default to serving
 | 
					
						
							|  |  |  |  |       // from the root.
 | 
					
						
							|  |  |  |  |       // remove last slash so user can land on `/test` instead of `/test/`
 | 
					
						
							|  |  |  |  |       publicPath: paths.publicUrlOrPath.slice(0, -1), | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-06-06 16:07:13 +08:00
										 |  |  |  |     server: getHttpsConfig(), | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  |     host, | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  |     historyApiFallback: { | 
					
						
							|  |  |  |  |       // Paths with dots should still use the history fallback.
 | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  |       // See https://github.com/facebook/create-react-app/issues/387.
 | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  |       disableDotRule: true, | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  |       index: paths.publicUrlOrPath, | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  |     // `proxy` is run between `before` and `after` `webpack-dev-server` hooks
 | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  |     proxy, | 
					
						
							| 
									
										
										
										
											2023-09-04 09:50:14 +08:00
										 |  |  |  |     onBeforeSetupMiddleware(devServer) { | 
					
						
							|  |  |  |  |       // Keep `evalSourceMapMiddleware`
 | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  |       // middlewares before `redirectServedPath` otherwise will not have any effect
 | 
					
						
							|  |  |  |  |       // This lets us fetch source contents from webpack for the error overlay
 | 
					
						
							| 
									
										
										
										
											2023-09-04 09:50:14 +08:00
										 |  |  |  |       devServer.app.use(evalSourceMapMiddleware(devServer)); | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |       if (fs.existsSync(paths.proxySetup)) { | 
					
						
							|  |  |  |  |         // This registers user provided middleware for proxy reasons
 | 
					
						
							| 
									
										
										
										
											2023-09-04 09:50:14 +08:00
										 |  |  |  |         require(paths.proxySetup)(devServer.app); | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  |       } | 
					
						
							|  |  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2023-09-04 09:50:14 +08:00
										 |  |  |  |     onAfterSetupMiddleware(devServer) { | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  |       // Redirect to `PUBLIC_URL` or `homepage` from `package.json` if url not match
 | 
					
						
							| 
									
										
										
										
											2023-09-04 09:50:14 +08:00
										 |  |  |  |       devServer.app.use(redirectServedPath(paths.publicUrlOrPath)); | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  |       // This service worker file is effectively a 'no-op' that will reset any
 | 
					
						
							|  |  |  |  |       // previous service worker registered for the same host:port combination.
 | 
					
						
							|  |  |  |  |       // We do this in development to avoid hitting the production cache if
 | 
					
						
							|  |  |  |  |       // it used the same host and port.
 | 
					
						
							| 
									
										
										
										
											2020-12-15 18:00:39 +08:00
										 |  |  |  |       // https://github.com/facebook/create-react-app/issues/2272#issuecomment-302832432
 | 
					
						
							| 
									
										
										
										
											2023-09-04 09:50:14 +08:00
										 |  |  |  |       devServer.app.use(noopServiceWorkerMiddleware(paths.publicUrlOrPath)); | 
					
						
							| 
									
										
										
										
											2018-05-02 14:09:58 +08:00
										 |  |  |  |     }, | 
					
						
							|  |  |  |  |   }; | 
					
						
							|  |  |  |  | }; |