# templately/3.8.0/modules/gutenberg-integration/webpack.config.partial.js

Templately – Elementor &amp; Gutenberg Template Library: 6500+ Free &amp; Pro Ready Templates And Cloud!, version 3.8.0. 14 lines.

- Page: https://pluginprobe.com/plugins/templately/3.8.0/code/modules/gutenberg-integration/webpack.config.partial.js
- Raw: https://pluginprobe.com/plugins/templately/3.8.0/raw/modules/gutenberg-integration/webpack.config.partial.js
- Modified: 2026-09-24T05:45:44+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/templately/3.8.0/code/modules/gutenberg-integration/webpack.config.partial.js#L10-L20`.

```javascript
const path = require('path');

module.exports = {
	entry: {
		// Original entry key preserved (not `modules/gutenberg-integration`) — the
		// PHP side (Platform/Gutenberg.php::scripts()) hardcodes the enqueue as
		// `js/gutenberg.js` / `css/gutenberg.css`. A `modules/`-prefixed key would now
		// fold this into the SPA bundle (react-src/generated/moduleManifest.ts,
		// Constitution XIII) and delete the file that enqueue names. See PRD §1 R2 and
		// the identical precedent in modules/elementor-integration (spec 032).
		gutenberg: path.resolve(__dirname, 'assets/js/index.tsx'),
	},
};

```
