diff --git a/mattermost-plugin/webapp/webpack.config.js b/mattermost-plugin/webapp/webpack.config.js index 83fcf20f3..027f2aef1 100644 --- a/mattermost-plugin/webapp/webpack.config.js +++ b/mattermost-plugin/webapp/webpack.config.js @@ -116,7 +116,7 @@ const config = { type: 'asset/resource', generator: { filename: '[name][ext]', - publicPath: TARGET_IS_PRODUCT ? '/static/products/boards/' : '/static/', + publicPath: TARGET_IS_PRODUCT ? undefined : '/static/', } }, ], @@ -205,12 +205,6 @@ config.plugins.push(new webpack.DefinePlugin({ if (NPM_TARGET === 'start:product') { const url = new URL('http://localhost:9006'); - for (const rule of config.module.rules) { - if (rule.type === 'asset/resource' && rule.generator) { - rule.generator.publicPath = url.toString() + 'static/'; - } - } - config.devServer = { host: url.hostname, port: url.port,