You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

webpack.config.js 195B

123456789
  1. const path = require("path");
  2. module.exports = {
  3. mode: "production",
  4. entry: "./index.js",
  5. output: {
  6. filename: "main.js",
  7. path: path.resolve(__dirname,"./dist")
  8. }
  9. }