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 30, 2021
1 parent 417b189 commit 21f425d
Show file tree
Hide file tree
Showing 3 changed files with 20,196 additions and 29,743 deletions.
23 changes: 11 additions & 12 deletions demo/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,41 +7,40 @@ module.exports = {
modules: [path.resolve("./"), "node_modules"],
fallback: {
fs: false,
path: require.resolve("path-browserify")
}
path: require.resolve("path-browserify"),
},
},
output: {
filename: "bundle.js",
path: path.resolve(__dirname, "./")
path: path.resolve(__dirname, "./"),
},
mode: "development",
module: {
rules: [
{
test: /\.js?$/,
use: ["babel-loader"],
exclude: /node_modules/
exclude: /node_modules/,
},
{
test: /\.css$/,
use: ["style-loader", "css-loader"]
use: ["style-loader", "css-loader"],
},
{
test: /\.svg$/,
loader: "svg-inline-loader"
loader: "svg-inline-loader",
},
{
test: /\.html$/i,
loader: "html-loader"
}
]
loader: "html-loader",
},
],
},
devServer: {
watchContentBase: true,
host: "0.0.0.0",
port: 8080,
historyApiFallback: false,
hot: false,
contentBase: "./demo"
}
static: "./demo",
},
};
Loading

0 comments on commit 21f425d

Please sign in to comment.