# uicore-elements/1.3.18/webpack.dc.config.js

UiCore Elements – Free widgets and templates for Elementor, version 1.3.18. 18 lines.

- Page: https://pluginprobe.com/plugins/uicore-elements/1.3.18/code/webpack.dc.config.js
- Raw: https://pluginprobe.com/plugins/uicore-elements/1.3.18/raw/webpack.dc.config.js
- Modified: 2026-09-24T17:19:12+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/uicore-elements/1.3.18/code/webpack.dc.config.js#L10-L20`.

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

module.exports = {
    ...defaultConfig,
    entry: {
        'design-cloud': path.resolve(__dirname, 'assets/src/design-cloud/index.js'),
    },
    output: {
        path: path.resolve(__dirname, 'assets/dc/'),
        filename: '[name].js',
    },
    // resolve: {
    //     alias: {
    //         '@uicore/design-cloud': path.resolve(__dirname, '../../../../../../design-cloud-ui')
    //     }
    // },
};
```
