Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 468 Bytes

README.md

File metadata and controls

33 lines (27 loc) · 468 Bytes

Installion

$ yarn global add poi-multi

Usage

$ poi-multi build index.js
$ poi-multi watch index.js
$ poi-multi dev index.js

Multiple

multiple webpack config supported!

module.export = {
    webpack(config) {
        return [
            config,
            Object.assign({}, config, {
                entry: 'xxx',
                output: {
                    path: 'xxx'
                }
            })
        ]
    }
}