UNPKG

392 BJavaScriptView Raw
1const path = require("path");
2const HtmlWebpackPlugin = require("html-webpack-plugin");
3
4module.exports = {
5 mode: "development",
6 devtool: "inline-source-map",
7 devServer: {
8 contentBase: path.join(__dirname, "browserDist"),
9 port: 9000,
10 },
11 plugins: [
12 new HtmlWebpackPlugin({
13 title: "Solid Authenticator Test Page",
14 template: "./src/index.html",
15 }),
16 ],
17};