Skip to content

Instantly share code, notes, and snippets.

@jfahrenkrug
Last active December 29, 2022 13:05
Show Gist options
  • Save jfahrenkrug/f76c90b7113db089ad2f54868e30c9a2 to your computer and use it in GitHub Desktop.
Save jfahrenkrug/f76c90b7113db089ad2f54868e30c9a2 to your computer and use it in GitHub Desktop.
var path = require('path')
module.exports = {
mode: "production",
entry: { Sentimentalist: "./index.js" },
output: {
path: path.resolve(__dirname, "dist"),
filename: "[name].bundle.js",
library: "[name]",
libraryTarget: "var"
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment