diff options
author | crupest <crupest@outlook.com> | 2021-05-05 21:57:13 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-05-05 21:57:13 +0800 |
commit | 2517be6d328884c04ae4e83f10794f7c4b0757be (patch) | |
tree | 493d9643dfe136f34a0a405f4027a8391bf8f758 | |
parent | 72549a8d959e3f6ae7fde79a4ad82c11c2d1eb0e (diff) | |
download | timeline-2517be6d328884c04ae4e83f10794f7c4b0757be.tar.gz timeline-2517be6d328884c04ae4e83f10794f7c4b0757be.tar.bz2 timeline-2517be6d328884c04ae4e83f10794f7c4b0757be.zip |
chore: Remove a fixed bug caused config.
-rw-r--r-- | FrontEnd/webpack.config.dev.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/FrontEnd/webpack.config.dev.js b/FrontEnd/webpack.config.dev.js index 75665431..a10bdaa8 100644 --- a/FrontEnd/webpack.config.dev.js +++ b/FrontEnd/webpack.config.dev.js @@ -1,13 +1,10 @@ const path = require("path");
-const webpack = require("webpack");
const ReactRefreshWebpackPlugin = require("@pmmmwh/react-refresh-webpack-plugin");
const config = require("./webpack.common");
config.mode("development");
-config.target('web'); // Remove this after https://github.com/webpack/webpack-dev-server/issues/2758 is fixed.
-
config.module
.rule("ts")
.use("babel")
|