Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

114 righe
5.8 KiB

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