Skip to content

Commit

Permalink
fix:update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanvl01 committed Sep 29, 2021
1 parent 10262ab commit 4df9627
Show file tree
Hide file tree
Showing 3 changed files with 6,377 additions and 9,662 deletions.
17 changes: 7 additions & 10 deletions demo/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ module.exports = {
resolve: {
extensions: [".js"],
modules: [path.resolve("./"), "node_modules"],
fallback: {
fs: false,
path: false,
},
},
output: {
filename: "bundle.js",
Expand Down Expand Up @@ -63,21 +67,14 @@ module.exports = {
],

devServer: {
// watchContentBase: true, // initiate a page refresh if static content changes
host: "0.0.0.0",
port: 8080,
historyApiFallback: false,
hot: true,
contentBase: "./demo",
},
resolve: {
fallback: {
fs: false,
path: false
},
hot: false,
static: "./demo",
},

optimization: {
minimize: false,
},
};
};
Loading

0 comments on commit 4df9627

Please sign in to comment.