Skip to content
Snippets Groups Projects
webpack.common.js 336 B
Newer Older
  • Learn to ignore specific revisions
  • const path = require("path")
    
    const webpack = require("webpack")
    
    
    module.exports = {
      mode: "development",
      entry: "./src/app.js",
      output: {
        filename: "app.js",
        path: path.resolve(__dirname, "public/js"),
      },
    
      plugins: [
        new webpack.ProvidePlugin({
          EventTarget: ["@ungap/event-target", "default"],
        }),
      ],