// webpack.config.js
const { create } = require("@gladeye/bento");
const bento = create({
homeDir: "./app",
outputDir: "./public"
});
bento.bundle("main", ["~/main.js"]);
module.exports = bento.export(process.env.NODE_ENV);
MIT © Gladeye
// webpack.config.js
const { create } = require("@gladeye/bento");
const bento = create({
homeDir: "./app",
outputDir: "./public"
});
bento.bundle("main", ["~/main.js"]);
module.exports = bento.export(process.env.NODE_ENV);
MIT © Gladeye