-
Notifications
You must be signed in to change notification settings - Fork 154
/
webpack.config.js
24 lines (17 loc) · 1.23 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const util = require("util");
const mainConfig = require("./webpack.config.main");
const libraryConfig = require("./webpack.config.renderer-library");
const readerConfig = require("./webpack.config.renderer-reader");
const pdfConfig = require("./webpack.config.renderer-pdf");
const preloadConfig = require("./webpack.config.preload");
// console.log("-------------------- MAIN config:");
// console.log(util.inspect(mainConfig, { colors: true, depth: null, compact: false, customInspect: true }));
// console.log("-------------------- LIBRARY config:");
// console.log(util.inspect(libraryConfig, { colors: true, depth: null, compact: false, customInspect: true }));
// console.log("-------------------- READER config:");
// console.log(util.inspect(readerConfig, { colors: true, depth: null, compact: false, customInspect: true }));
// console.log("-------------------- PDF config:");
// console.log(util.inspect(pdfConfig, { colors: true, depth: null, compact: false, customInspect: true }));
// console.log("-------------------- PRELOAD config:");
// console.log(util.inspect(preloadConfig, { colors: true, depth: null, compact: false, customInspect: true }));
module.exports = [mainConfig, libraryConfig, readerConfig, pdfConfig, preloadConfig];