feat: basic webpack-chain setup

This commit is contained in:
Igor Randjelovic
2020-11-14 14:27:52 +01:00
committed by Nathan Walker
parent 96da507d64
commit aaae0d4f2e
5 changed files with 54 additions and 4 deletions

View File

@ -2,5 +2,9 @@ import { Configuration } from 'webpack';
// todo: add base configuration that's shared across all flavors
export default function (env): Configuration {
return {};
return {
entry: {
'bundle.js': 'bundle.js',
},
};
}