website-page-frame
Version:
This library provides a way to allow browser based programs to have cross parent to child window communication through code.
16 lines (12 loc) • 340 B
JavaScript
var path = require("path");
module.exports = {
mode: "production",
target: "electron-renderer",
entry: path.join(__dirname, "index-client.js"),
output: {
filename: "client-bundle.js",
publicPath: path.resolve(__dirname, "dist/"),
libraryTarget: "var",
library: "websitePageFrame"
}
};