diff options
Diffstat (limited to 'client/config/webpack.common.js')
-rw-r--r-- | client/config/webpack.common.js | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/client/config/webpack.common.js b/client/config/webpack.common.js index 653866b93..7f1da74b9 100644 --- a/client/config/webpack.common.js +++ b/client/config/webpack.common.js | |||
@@ -222,10 +222,16 @@ module.exports = { | |||
222 | * | 222 | * |
223 | * See: https://www.npmjs.com/package/copy-webpack-plugin | 223 | * See: https://www.npmjs.com/package/copy-webpack-plugin |
224 | */ | 224 | */ |
225 | new CopyWebpackPlugin([{ | 225 | new CopyWebpackPlugin([ |
226 | from: 'src/assets', | 226 | { |
227 | to: 'assets' | 227 | from: 'src/assets', |
228 | }]), | 228 | to: 'assets' |
229 | }, | ||
230 | { | ||
231 | from: 'node_modules/webtorrent/webtorrent.min.js', | ||
232 | to: 'assets/webtorrent' | ||
233 | } | ||
234 | ]), | ||
229 | 235 | ||
230 | /* | 236 | /* |
231 | * Plugin: HtmlWebpackPlugin | 237 | * Plugin: HtmlWebpackPlugin |
@@ -243,8 +249,7 @@ module.exports = { | |||
243 | new webpack.ProvidePlugin({ | 249 | new webpack.ProvidePlugin({ |
244 | jQuery: 'jquery', | 250 | jQuery: 'jquery', |
245 | $: 'jquery', | 251 | $: 'jquery', |
246 | jquery: 'jquery', | 252 | jquery: 'jquery' |
247 | WebTorrent: 'webtorrent/webtorrent.min' | ||
248 | }) | 253 | }) |
249 | 254 | ||
250 | ], | 255 | ], |