Skip to content
Snippets Groups Projects
webpack.common.js 188 B
Newer Older
const path = require("path")

module.exports = {
  mode: "development",
  entry: "./src/app.js",
  output: {
    filename: "app.js",
    path: path.resolve(__dirname, "public/js"),
  },
}