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

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