diff options
author | bob <bcz@cs.brown.edu> | 2019-01-30 17:36:30 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-01-30 17:36:30 -0500 |
commit | 0493f7f18a3eb49d0443f1742d53bb214bf9dd70 (patch) | |
tree | e13aa17f0b93a7e75ce02ea35fbe960a576f2d7d /webpack.config.js | |
parent | f9d241406c62b6aba1a84b5947d339c1a4c28a6d (diff) |
drag drop fixes for docking
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js index ed678edc8..a30868b93 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -33,6 +33,17 @@ module.exports = { loader: "sass-loader" } ] + }, + { + test: /\.(png|jpg|gif)$/i, + use: [ + { + loader: 'url-loader', + options: { + limit: 8192 + } + } + ] }] }, plugins: [ |