aboutsummaryrefslogtreecommitdiffstats
path: root/webpack.config.js
blob: e5d33503b50c76bbf4aae7754f0bc25bfb6f56c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
const path = require("path");

module.exports = {
  entry: "./src/pkg93.js",
  output: {
    filename: "pkg93.js",
    path: path.resolve(__dirname, "dist")
  }
};