We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2b12a1 commit 98db5f7Copy full SHA for 98db5f7
demo/webpack.config.js
@@ -24,7 +24,7 @@ module.exports = {
24
},
25
mode: isDevelopment ? 'development' : 'production',
26
plugins: [
27
- // isDevelopment && new webpack.HotModuleReplacementPlugin(),
+ isDevelopment && new webpack.HotModuleReplacementPlugin(),
28
isDevelopment && new ReactRefreshWebpackPlugin(),
29
].filter(Boolean),
30
devServer: {
@@ -35,7 +35,6 @@ module.exports = {
35
rules: [
36
{
37
test: dir_demo_js,
38
- // test: /\.[jt]sx?$/,
39
exclude: /node_modules/,
40
use: [
41
0 commit comments