UNPKG

5.82 kBPlain TextView Raw
1import * as errorOverlayMiddleware from 'react-dev-utils/errorOverlayMiddleware'
2import * as evalSourceMapMiddleware from 'react-dev-utils/evalSourceMapMiddleware'
3import * as noopServiceWorkerMiddleware from 'react-dev-utils/noopServiceWorkerMiddleware'
4import * as ignoredFiles from 'react-dev-utils/ignoredFiles'
5import {
6 prepareProxy,
7 prepareUrls
8} from 'react-dev-utils/WebpackDevServerUtils'
9import Berun from '@berun/berun'
10
11export default (berun: Berun, opts = {}) => {
12 const options = Object.assign(berun.options, opts)
13
14 const proxySetting = require(options.paths.appPackageJson).proxy
15 const proxyConfig = prepareProxy(proxySetting, options.paths.appPublic)
16
17 const protocol = process.env.HTTPS === 'true' ? 'https' : 'http'
18 const HOST = process.env.HOST || '0.0.0.0'
19
20 const urls = prepareUrls(protocol, HOST, 0)
21
22 berun.devserver.merge({
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 !proxyConfig || process.env.DANGEROUSLY_DISABLE_HOST_CHECK === 'true',
41 https: protocol === 'https',
42 host: HOST,
43 public: urls.lanUrlForConfig,
44 proxy: proxyConfig,
45 // Enable gzip compression of generated files.
46 compress: true,
47 // Silence WebpackDevServer's own logs since they're generally not useful.
48 // It will still show compile warnings and errors with this setting.
49 clientLogLevel: 'none',
50 // By default WebpackDevServer serves physical files from current directory
51 // in addition to all the virtual build products that it serves from memory.
52 // This is confusing because those files won’t automatically be available in
53 // production build folder unless we copy them. However, copying the whole
54 // project directory is dangerous because we may expose sensitive files.
55 // Instead, we establish a convention that only files in `public` directory
56 // get served. Our build script will copy `public` into the `build` folder.
57 // In `index.html`, you can get URL of `public` folder with %PUBLIC_URL%:
58 // <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
59 // In JavaScript code, you can access it with `process.env.PUBLIC_URL`.
60 // Note that we only recommend to use `public` folder as an escape hatch
61 // for files like `favicon.ico`, `manifest.json`, and libraries that are
62 // for some reason broken when imported through Webpack. If you just want to
63 // use an image, put it in `src` and `import` it from JavaScript instead.
64 contentBase: options.paths.appPublic,
65 // By default files from `contentBase` will not trigger a page reload.
66 watchContentBase: true,
67 // Enable hot reloading server. It will provide /sockjs-node/ endpoint
68 // for the WebpackDevServer client so it can learn when the files were
69 // updated. The WebpackDevServer client is included as an entry point
70 // in the Webpack development configuration. Note that only changes
71 // to CSS are currently hot reloaded. JS changes will refresh the browser.
72 hot: true,
73 // It is important to tell WebpackDevServer to use the same "root" path
74 // as we specified in the config. In development, we always serve from /.
75 publicPath: berun.webpack.output.get('publicPath'),
76 // WebpackDevServer is noisy by default so we emit custom message instead
77 // by listening to the compiler events with `compiler.hooks[...].tap` calls above.
78 quiet: true,
79 // Reportedly, this avoids CPU overload on some systems.
80 // https://github.com/facebook/create-react-app/issues/293
81 // src/node_modules is not ignored to support absolute imports
82 // https://github.com/facebook/create-react-app/issues/1065
83 watchOptions: {
84 ignored: ignoredFiles(options.paths.appSrc)
85 },
86 overlay: false,
87 historyApiFallback: {
88 // Paths with dots should still use the history fallback.
89 // See https://github.com/facebook/create-react-app/issues/387.
90 disableDotRule: true
91 },
92 before(app, server) {
93 // This lets us fetch source contents from webpack for the error overlay
94 app.use(evalSourceMapMiddleware(server))
95 // This lets us open files from the runtime error overlay.
96 app.use(errorOverlayMiddleware())
97 // This service worker file is effectively a 'no-op' that will reset any
98 // previous service worker registered for the same host:port combination.
99 // We do this in development to avoid hitting the production cache if
100 // it used the same host and port.
101 // https://github.com/facebook/create-react-app/issues/2272#issuecomment-302832432
102 app.use(noopServiceWorkerMiddleware())
103 }
104 }) // merge
105} // middleware exports