diff options
author | crupest <crupest@outlook.com> | 2021-05-17 20:27:04 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-05-17 20:27:04 +0800 |
commit | 537538f020f855faf1d721aea4620987388d5680 (patch) | |
tree | 2b9c8c64acb93cd0f26a10a3caa8ab3f7b9dd30f | |
parent | b164a0e3e9708596f4b7e32d0b43fb5094e51cf5 (diff) | |
download | timeline-537538f020f855faf1d721aea4620987388d5680.tar.gz timeline-537538f020f855faf1d721aea4620987388d5680.tar.bz2 timeline-537538f020f855faf1d721aea4620987388d5680.zip |
build: Remove an unused package.
-rw-r--r-- | FrontEnd/package.json | 1 | ||||
-rw-r--r-- | FrontEnd/webpack.config.dev.js | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/FrontEnd/package.json b/FrontEnd/package.json index ad6a8897..4c175255 100644 --- a/FrontEnd/package.json +++ b/FrontEnd/package.json @@ -102,7 +102,6 @@ "postcss-loader": "^5.3.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.0",
- "querystring-es3": "^0.2.1",
"react-refresh": "^0.10.0",
"sass": "^1.32.13",
"sass-loader": "^11.1.1",
diff --git a/FrontEnd/webpack.config.dev.js b/FrontEnd/webpack.config.dev.js index a10bdaa8..a657861b 100644 --- a/FrontEnd/webpack.config.dev.js +++ b/FrontEnd/webpack.config.dev.js @@ -35,10 +35,6 @@ config.module config.devtool("eval-cheap-module-source-map");
-config.resolve.set("fallback", {
- querystring: require.resolve("querystring-es3"),
-});
-
config.devServer
.contentBase(path.resolve(__dirname, "public/"))
.port(3000)
|