feat(webpack5): initial project files

This commit is contained in:
Igor Randjelovic
2020-11-14 12:07:56 +01:00
committed by Nathan Walker
parent 13a525ddd9
commit 9f436695ad
19 changed files with 144 additions and 4 deletions

View File

@ -0,0 +1,15 @@
import base from './base';
// todo: add base configuration for vue
export default function (env) {
const config = base(env);
// todo: we may want to use webpack-chain internally
// to avoid "trying to read property x of undefined" type of issues
config.module.rules.push({
test: /.vue$/,
use: [],
});
return {};
}