-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated react-scripts to version 5 (webpack 5), updated React from 16…
… to 18, added bootstrap icons, updated changelogs, updated yarn.lock
- Loading branch information
Anton Mogdalov
committed
Sep 14, 2024
1 parent
486d5a5
commit 5de91dd
Showing
20 changed files
with
15,650 additions
and
19,785 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
const webpack = require("webpack") | ||
const path = require("path") | ||
module.exports = function override(config) { | ||
const fallback = config.resolve.fallback || {} | ||
Object.assign(fallback, { | ||
crypto: require.resolve("crypto-browserify"), | ||
stream: require.resolve("stream-browserify"), | ||
assert: require.resolve("assert"), | ||
http: require.resolve("stream-http"), | ||
https: require.resolve("https-browserify"), | ||
os: require.resolve("os-browserify"), | ||
url: require.resolve("url"), | ||
vm: require.resolve("vm-browserify"), | ||
}) | ||
config.resolve.fallback = fallback | ||
config.plugins = (config.plugins || []).concat([ | ||
new webpack.ProvidePlugin({ | ||
process: "process/browser", | ||
Buffer: ["buffer", "Buffer"], | ||
}), | ||
]) | ||
const modules = config.resolve.modules | ||
config.resolve.modules = [...modules, path.resolve(__dirname, "src")] | ||
config.module.rules.push({ | ||
test: /\.m?js/, | ||
resolve: { | ||
fullySpecified: false, | ||
}, | ||
}) | ||
return config | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.