Skip to content

Commit

Permalink
Change webpack config order
Browse files Browse the repository at this point in the history
  • Loading branch information
liszkapawel committed Aug 4, 2022
1 parent 7fc223e commit 475986b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ distConfig.name = `bitbag-plugin-dist`;

Encore.reset();

const shopConfig = getConfig(pluginName, 'shop')
const adminConfig = getConfig(pluginName, 'admin')
const shopConfig = getConfig(pluginName, 'shop')

module.exports = [shopConfig, adminConfig, distConfig];
module.exports = [adminConfig, shopConfig, distConfig];

0 comments on commit 475986b

Please sign in to comment.