diff options
author | elijah <elijah@riseup.net> | 2017-03-15 01:10:51 +0100 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2017-03-15 01:11:30 +0100 |
commit | 990ffae073c9fbb319f2685bf830e131d2db2e96 (patch) | |
tree | 8ec6ab6de275508383897b04db14a254f646d92d /ui/webpack.config.js | |
parent | a6b83223ee5437936dc0389a92bde68bd93d477c (diff) |
[bug] fix icons in ui
Signed-off-by: elijah <elijah@riseup.net>
Diffstat (limited to 'ui/webpack.config.js')
-rw-r--r-- | ui/webpack.config.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/webpack.config.js b/ui/webpack.config.js index c4e5f30..786addd 100644 --- a/ui/webpack.config.js +++ b/ui/webpack.config.js @@ -54,7 +54,8 @@ var config = { { from: 'img/*'}, { from: 'index.html' }, { from: '../node_modules/bootstrap/dist/css/bootstrap.min.css', to: 'css' }, - { from: '../node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.svg', to: 'fonts' }, + { from: '../node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2', to: 'fonts' }, + { from: '../node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff', to: 'fonts' }, { from: '../node_modules/zxcvbn/dist/zxcvbn.js', to: 'js' } ]) ], |