# depicter/1.3.2/app/src/Modules/Gutenberg/webpack.config.js

Depicter — Popup &amp; Slider Builder, version 1.3.2. 13 lines.

- Page: https://pluginprobe.com/plugins/depicter/1.3.2/code/app/src/Modules/Gutenberg/webpack.config.js
- Raw: https://pluginprobe.com/plugins/depicter/1.3.2/raw/app/src/Modules/Gutenberg/webpack.config.js
- Modified: 2022-06-01T06:26:20+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/depicter/1.3.2/code/app/src/Modules/Gutenberg/webpack.config.js#L10-L20`.

```javascript
const path = require('path');
const defaultConfig = require('@wordpress/scripts/config/webpack.config.js');

module.exports = {
  ...defaultConfig,
  entry: path.resolve(__dirname, 'src/index.js'),
  output: {
    path: path.resolve(__dirname, 'build'),
    filename: 'depicter-gutenberg-blocks.js',
    chunkFilename: '[name].js',
  },
};

```
