Last active
December 29, 2022 13:05
-
-
Save jfahrenkrug/f76c90b7113db089ad2f54868e30c9a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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