-
Notifications
You must be signed in to change notification settings - Fork 217
Gutenberg Setup
Imran Sayed edited this page Jun 15, 2021
·
1 revision
- Install the following packages
npm i @wordpress/base-styles @wordpress/block-editor @wordpress/blocks @wordpress/components @wordpress/compose @wordpress/data @wordpress/element @wordpress/hooks @wordpress/i18n @wordpress/icons @wordpress/dependency-extraction-webpack-plugin -D
- Add in your webpack config
const DependencyExtractionWebpackPlugin = require( '@wordpress/dependency-extraction-webpack-plugin' );
- Add in your webpack config plugins.
new DependencyExtractionWebpackPlugin( {
injectPolyfill: true,
combineAssets: true,
} )