Skip to content
Snippets Groups Projects
webpack.common.js 188 B
Newer Older
  • Learn to ignore specific revisions
  • const path = require("path")
    
    module.exports = {
      mode: "development",
      entry: "./src/app.js",
      output: {
        filename: "app.js",
        path: path.resolve(__dirname, "public/js"),
      },
    }