UNPKG

206 BJavaScriptView Raw
1const webpackCompiler = require('./compiler')
2
3const build = async () => {
4 const { webpackConfig } = require('./webpack.server.config.js')
5 await webpackCompiler(webpackConfig)
6}
7
8module.exports = build