Skip to content

Commit

Permalink
update package lock to v2
Browse files Browse the repository at this point in the history
  • Loading branch information
lawwman committed Jan 11, 2024
1 parent db4c3ec commit 1e3464e
Show file tree
Hide file tree
Showing 2 changed files with 35,681 additions and 247 deletions.
16 changes: 8 additions & 8 deletions example/decentralized-renderer/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,26 @@ module.exports = {
entry: path.join(__dirname, "./app.tsx"),
externals: {},
output: {
filename: "bundle.js"
filename: "bundle.js",
},
devServer: {
contentBase: path.join(__dirname, "."),
compress: true,
port: 9000,
index: "index.html"
index: "index.html",
},
resolve: {
extensions: [".js", ".jsx", ".ts", ".tsx"]
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
module: {
rules: [
{
test: /\.(ts|js)x?$/,
exclude: /node_modules/,
use: {
loader: "babel-loader"
}
}
]
}
loader: "babel-loader",
},
},
],
},
};
Loading

0 comments on commit 1e3464e

Please sign in to comment.