📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 16:14:38
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wp-user-manager
/
vendor
/
htmlburger
/
carbon-fields
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wp-user-manager/vendor/htmlburger/carbon-fields
🔄 Refresh
✏️
Editing: webpack.core.js
Writable
const path = require('path'); const merge = require('webpack-merge'); const webpack = require('webpack'); const execa = require('execa'); const base = require('./webpack.base'); const OnBuildPlugin = require('on-build-webpack'); module.exports = () => { const env = base.detectEnv(); const plugins = [ new webpack.DllReferencePlugin({ manifest: require(base.getNameWithSuffix('./assets/dist/carbon.vendor.json', env)), sourceType: 'this' }), new webpack.DllPlugin({ name: '[name]', path: path.resolve(__dirname, base.getNameWithSuffix('assets/dist/[name].json', env)) }), new webpack.HashedModuleIdsPlugin() ]; if (env === 'development') { let bootstraped = false; plugins.push(new OnBuildPlugin(() => { if (!bootstraped) { bootstraped = true; const child = execa('npm', ['run', 'js:boot', '--', '-w']); child.stdout.pipe(process.stdout); child.stderr.pipe(process.stderr); } })); } return merge(base(env), { entry: { 'carbon.core': [ './assets/js/core.js', ] }, plugins, }); };
💾 Save Changes
❌ Cancel