diff options
author | Phil Hughes <me@iamphill.com> | 2017-05-02 07:35:49 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-05-02 07:35:49 +0000 |
commit | 54beb93ac30371c978d80b03a8e0c386ca75fdb5 (patch) | |
tree | 092ced9ac8be0fd65c9bcde947bf26b3443bb11d /config | |
parent | 8100f9686dcd729f42d14e86cb9b36b403e036ac (diff) | |
parent | 9f3985c6133507ac721abbb4c19049656008ec68 (diff) | |
download | gitlab-ce-54beb93ac30371c978d80b03a8e0c386ca75fdb5.tar.gz |
Merge branch 'pdflab-in-repo' into 'master'
Move PDFLab assets into repo
See merge request !10642
Diffstat (limited to 'config')
-rw-r--r-- | config/webpack.config.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js index cb0a57a3a41..0ec9e48845e 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -78,6 +78,11 @@ var config = { loader: 'raw-loader', }, { + test: /\.gif$/, + loader: 'url-loader', + query: { mimetype: 'image/gif' }, + }, + { test: /\.(worker\.js|pdf)$/, exclude: /node_modules/, loader: 'file-loader', |