UNPKG

350 BJavaScriptView Raw
1const path = require('path')
2const getCwd = require('../utils/get-cwd')
3
4module.exports = {
5 dist: path.resolve(getCwd(), './dist'),
6 config: {},
7 aliases: {},
8 i18n: false,
9 pwa: true,
10 devServer: {},
11 beforeBuild: () => { },
12 afterBuild: () => { },
13 port: undefined,
14 defines: {},
15 webpackDll: []
16}