* add test mode * bump packages * add reference lines * update yarn lock * fix netlify build * fix num workers * update year in doc
9 lines
294 B
JavaScript
9 lines
294 B
JavaScript
const path = require('path');
|
|
const webpackCommon = require('./../../../.webpack/webpack.base.js');
|
|
const SRC_DIR = path.join(__dirname, '../src');
|
|
const DIST_DIR = path.join(__dirname, '../dist');
|
|
|
|
module.exports = (env, argv) => {
|
|
return webpackCommon(env, argv, { SRC_DIR, DIST_DIR });
|
|
};
|