diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-02-01 01:12:31 -0500 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-02-01 01:12:31 -0500 |
commit | 2cddac17b405aa85d488f12a0ee5e05ba8698eab (patch) | |
tree | 9b7c085eeab417c00fc32b656eacb0dae3ccb407 /webpack.config.js | |
parent | d12625a3a3e241d80ce3fe8e577ba8a41320b189 (diff) | |
parent | b2c95923e631bc4acae8bb3d10913704d8ec9939 (diff) |
Merge branch 'master' of github-tsch-brown:browngraphicslab/Dash-Web
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: [ |