diff --git a/node_modules/react-scripts/config/webpack.config.js b/node_modules/react-scripts/config/webpack.config.js index e465d8e..769f0dd 100644 --- a/node_modules/react-scripts/config/webpack.config.js +++ b/node_modules/react-scripts/config/webpack.config.js @@ -106,6 +106,9 @@ module.exports = function (webpackEnv) { const isEnvProductionProfile = isEnvProduction && process.argv.includes('--profile'); + const isEnvProductionTest = + isEnvProduction && process.argv.includes('--test'); + // We will provide `paths.publicUrlOrPath` to our app // as %PUBLIC_URL% in `index.html` and `process.env.PUBLIC_URL` in JavaScript. // Omit trailing slash as %PUBLIC_URL%/xyz looks better than %PUBLIC_URL%xyz. @@ -256,7 +259,7 @@ module.exports = function (webpackEnv) { level: 'none', }, optimization: { - minimize: isEnvProduction, + minimize: isEnvProduction && !isEnvProductionTest, minimizer: [ // This is only used in production mode new TerserPlugin({ @@ -304,6 +307,13 @@ module.exports = function (webpackEnv) { }, resolve: { // This allows you to set a fallback for where webpack should look for modules. + fallback: { + crypto: false, + module: false, + dgram: false, + path: false, + url: false, + }, // We placed these paths second because we want `node_modules` to "win" // if there are any conflicts. This matches Node resolution mechanism. // https://github.com/facebook/create-react-app/issues/253 @@ -320,13 +330,15 @@ module.exports = function (webpackEnv) { .map(ext => `.${ext}`) .filter(ext => useTypeScript || !ext.includes('ts')), alias: { + "react": path.resolve(path.join(__dirname,'../../react')), + "react-dom": path.resolve(path.join(__dirname,'../../react-dom')), // Support React Native Web // https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/ 'react-native': 'react-native-web', // Allows for better profiling with ReactDevTools ...(isEnvProductionProfile && { 'react-dom$': 'react-dom/profiling', - 'scheduler/tracing': 'scheduler/tracing-profiling', + 'scheduler/tracing': 'scheduler/tracing-profiling' }), ...(modules.webpackAliases || {}), }, @@ -336,14 +348,14 @@ module.exports = function (webpackEnv) { // To fix this, we prevent you from importing files out of src/ -- if you'd like to, // please link the files into your node_modules/ and let module-resolution kick in. // Make sure your source files are compiled, as they will not be processed in any way. - new ModuleScopePlugin(paths.appSrc, [ - paths.appPackageJson, - reactRefreshRuntimeEntry, - reactRefreshWebpackPluginRuntimeEntry, - babelRuntimeEntry, - babelRuntimeEntryHelpers, - babelRuntimeRegenerator, - ]), + // new ModuleScopePlugin(paths.appSrc, [ + // paths.appPackageJson, + // reactRefreshRuntimeEntry, + // reactRefreshWebpackPluginRuntimeEntry, + // babelRuntimeEntry, + // babelRuntimeEntryHelpers, + // babelRuntimeRegenerator, + // ]), ], }, module: {