PluginProbe
Tableberg – Simple Gutenberg Table Block / 1.1.5
Tableberg – Simple Gutenberg Table Block v1.1.5
1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 All 42 releases
tableberg / webpack.config.js

webpack.config.js in Tableberg – Simple Gutenberg Table Block 1.1.5, at webpack.config.js

19 lines 445 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Webpack Configuration
3 *
4 * Extends @wordpress/scripts default webpack config to add custom plugins.
5 */
6
7 const defaultConfig = require("@wordpress/scripts/config/webpack.config");
8 const SyncAttributesPlugin = require("./webpack-plugins/sync-attributes-plugin");
9
10 module.exports = {
11 ...defaultConfig,
12 plugins: [
13 ...defaultConfig.plugins,
14 new SyncAttributesPlugin({
15 verbose: true,
16 }),
17 ],
18 };
19