UNPKG

5.87 kBJavaScriptView Raw
1// @remove-on-eject-begin
2/**
3 * Copyright (c) 2015-present, Facebook, Inc.
4 *
5 * This source code is licensed under the MIT license found in the
6 * LICENSE file in the root directory of this source tree.
7 */
8// @remove-on-eject-end
9'use strict';
10
11const errorOverlayMiddleware = require('react-dev-utils/errorOverlayMiddleware');
12const evalSourceMapMiddleware = require('react-dev-utils/evalSourceMapMiddleware');
13const noopServiceWorkerMiddleware = require('react-dev-utils/noopServiceWorkerMiddleware');
14const ignoredFiles = require('react-dev-utils/ignoredFiles');
15const paths = require('./paths');
16const fs = require('fs');
17
18const protocol = process.env.HTTPS === 'true' ? 'https' : 'http';
19const host = process.env.HOST || '0.0.0.0';
20
21module.exports = function(proxy, allowedHost) {
22 return {
23 // WebpackDevServer 2.4.3 introduced a security fix that prevents remote
24 // websites from potentially accessing local content through DNS rebinding:
25 // https://github.com/webpack/webpack-dev-server/issues/887
26 // https://medium.com/webpack/webpack-dev-server-middleware-security-issues-1489d950874a
27 // However, it made several existing use cases such as development in cloud
28 // environment or subdomains in development significantly more complicated:
29 // https://github.com/facebook/create-react-app/issues/2271
30 // https://github.com/facebook/create-react-app/issues/2233
31 // While we're investigating better solutions, for now we will take a
32 // compromise. Since our WDS configuration only serves files in the `public`
33 // folder we won't consider accessing them a vulnerability. However, if you
34 // use the `proxy` feature, it gets more dangerous because it can expose
35 // remote code execution vulnerabilities in backends like Django and Rails.
36 // So we will disable the host check normally, but enable it if you have
37 // specified the `proxy` setting. Finally, we let you override it if you
38 // really know what you're doing with a special environment variable.
39 disableHostCheck:
40 !proxy || process.env.DANGEROUSLY_DISABLE_HOST_CHECK === 'true',
41 // Enable gzip compression of generated files.
42 compress: true,
43 // Silence WebpackDevServer's own logs since they're generally not useful.
44 // It will still show compile warnings and errors with this setting.
45 clientLogLevel: 'none',
46 // By default WebpackDevServer serves physical files from current directory
47 // in addition to all the virtual build products that it serves from memory.
48 // This is confusing because those files won’t automatically be available in
49 // production build folder unless we copy them. However, copying the whole
50 // project directory is dangerous because we may expose sensitive files.
51 // Instead, we establish a convention that only files in `public` directory
52 // get served. Our build script will copy `public` into the `build` folder.
53 // In `index.html`, you can get URL of `public` folder with %PUBLIC_URL%:
54 // <link rel="icon" href="%PUBLIC_URL%/favicon.ico">
55 // In JavaScript code, you can access it with `process.env.PUBLIC_URL`.
56 // Note that we only recommend to use `public` folder as an escape hatch
57 // for files like `favicon.ico`, `manifest.json`, and libraries that are
58 // for some reason broken when imported through Webpack. If you just want to
59 // use an image, put it in `src` and `import` it from JavaScript instead.
60 contentBase: paths.appPublic,
61 // By default files from `contentBase` will not trigger a page reload.
62 watchContentBase: true,
63 // Enable hot reloading server. It will provide /sockjs-node/ endpoint
64 // for the WebpackDevServer client so it can learn when the files were
65 // updated. The WebpackDevServer client is included as an entry point
66 // in the Webpack development configuration. Note that only changes
67 // to CSS are currently hot reloaded. JS changes will refresh the browser.
68 hot: true,
69 // It is important to tell WebpackDevServer to use the same "root" path
70 // as we specified in the config. In development, we always serve from /.
71 publicPath: '/',
72 // WebpackDevServer is noisy by default so we emit custom message instead
73 // by listening to the compiler events with `compiler.hooks[...].tap` calls above.
74 quiet: true,
75 // Reportedly, this avoids CPU overload on some systems.
76 // https://github.com/facebook/create-react-app/issues/293
77 // src/node_modules is not ignored to support absolute imports
78 // https://github.com/facebook/create-react-app/issues/1065
79 watchOptions: {
80 ignored: ignoredFiles(paths.appSrc),
81 },
82 // Enable HTTPS if the HTTPS environment variable is set to 'true'
83 https: protocol === 'https',
84 host,
85 overlay: false,
86 historyApiFallback: {
87 // Paths with dots should still use the history fallback.
88 // See https://github.com/facebook/create-react-app/issues/387.
89 disableDotRule: true,
90 },
91 public: allowedHost,
92 proxy,
93 before(app, server) {
94 if (fs.existsSync(paths.proxySetup)) {
95 // This registers user provided middleware for proxy reasons
96 require(paths.proxySetup)(app);
97 }
98
99 // This lets us fetch source contents from webpack for the error overlay
100 app.use(evalSourceMapMiddleware(server));
101 // This lets us open files from the runtime error overlay.
102 app.use(errorOverlayMiddleware());
103
104 // This service worker file is effectively a 'no-op' that will reset any
105 // previous service worker registered for the same host:port combination.
106 // We do this in development to avoid hitting the production cache if
107 // it used the same host and port.
108 // https://github.com/facebook/create-react-app/issues/2272#issuecomment-302832432
109 app.use(noopServiceWorkerMiddleware());
110 },
111 };
112};