@shaizei/webpack-config
v0.1.0-beta.12
Published
This package contains shareable webpack configuration used by the applications created with @shaizei/cli.
Readme
Getting Started
1. Installation
Using Yarn:
yarn add @shaizei/webpack-config webpack webpack-dev-server webpack-cli --devUsing npm:
npm install @shaizei/webpack-config webpack webpack-dev-server webpack-cli --save-dev2. Usage
- Create a new
webpack.config.jsat the root directory of your project. - Import the config function from
@shaizei/webpack-configpackage.
const WebpackConfig = require('@shaizei/webpack-config');- Then, we just need to export the configurations.
module.exports = WebpackConfig();Override Default Config
If you want to override some of the pre-defined configuration, then simply pass a JavaScript object into WebpackConfig as follows:
module.exports = WebpackConfig({
plugins: [...]
});