2.15.0 • Published 1 year ago

@yanhuang/webpack-configs v2.15.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Yanhuang Webpack Config

Base Webpack configuration files.

Install

```
yarn add --dev @yanhuang/webpack-configs
```
Or
```
npm install --save-dev @yanhuang/webpack-configs
```

Base Configuration

```
const webpackMerge = require('webpack-merge');
const baseConfig = require('@yanhuang/webpack-configs');

module.exports = webpackMerge(baseConfig, {
    entry: {...},
    output: {...},
})
```