Skip to content

Commit

Permalink
Fixed webpack config for Web browser app
Browse files Browse the repository at this point in the history
Signed-off-by: Leanid Astrakou <[email protected]>
  • Loading branch information
DivergentEuropeans committed Nov 13, 2023
1 parent 7f64ef2 commit bd3673f
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions system-apps/web-browser-app/webClient/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,14 @@ var config = {
]
},
plugins: [
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, './src/assets'),
to: path.resolve('../web/assets')
}
])
new CopyWebpackPlugin({
patterns: [
{
from: path.resolve(__dirname, './src/assets'),
to: path.resolve(__dirname, '../web/assets')
},
],
})
]
};

Expand Down

0 comments on commit bd3673f

Please sign in to comment.