@gasket/plugin-webpack
Adds Webpack support to your application.
Installation
New apps
gasket create <app-name> --plugins @gasket/plugin-webpack
Existing apps
npm i @gasket/plugin-webpack webpack
Modify plugins
section of your gasket.config.js
:
module.exports = {
plugins: {
add: [
+ '@gasket/plugin-webpack'
]
}
}