# tableberg/1.1.5/webpack.config.js

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 19 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/webpack.config.js
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/webpack.config.js
- Modified: 2026-09-16T03:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/1.1.5/code/webpack.config.js#L10-L20`.

```javascript
/**
 * Webpack Configuration
 *
 * Extends @wordpress/scripts default webpack config to add custom plugins.
 */

const defaultConfig = require("@wordpress/scripts/config/webpack.config");
const SyncAttributesPlugin = require("./webpack-plugins/sync-attributes-plugin");

module.exports = {
    ...defaultConfig,
    plugins: [
        ...defaultConfig.plugins,
        new SyncAttributesPlugin({
            verbose: true,
        }),
    ],
};

```
