Skip to content

Commit

Permalink
🔧 Fix dup bool check in webpack config
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Apr 20, 2024
1 parent 7f01187 commit d043c21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const isServer = process.env.IS_DOCKER || process.env.IS_SERVER || false;
const plugins = !isServer ? [
new CopyWebpackPlugin({
patterns: [
!isServer ? { from: './user-data', to: './' } : {},
{ from: './user-data', to: './' },
],
}),
] : [];
Expand Down

0 comments on commit d043c21

Please sign in to comment.