status-chat-widget/webpack.config.js

17 lines
262 B
JavaScript
Raw Permalink Normal View History

2019-04-09 21:54:39 +00:00
const path = require("path");
2019-04-09 21:22:27 +00:00
module.exports = {
2019-04-09 21:54:39 +00:00
entry: "./src/index.js",
target: "web",
2019-04-09 21:22:27 +00:00
output: {
2019-04-09 21:54:39 +00:00
path: path.join(__dirname, "dist/js"),
2019-04-10 19:59:20 +00:00
filename: "statuswidget.js"
2019-04-09 21:22:27 +00:00
},
2019-04-09 21:54:39 +00:00
resolve: {
extensions: [".js"]
},
node: {
net: 'empty'
2019-04-09 21:22:27 +00:00
}
};