diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-09-24 11:34:02 +0200 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 19:12:47 +0100 |
commit | e1c80637ec002bc39df5aa7470a69c5ddb8819db (patch) | |
tree | 396b059244b596e9aec3bae0f33b44ef0207aa5a /webpack.config.js | |
parent | c7cf1dc95424b57d2d48f3cd8ad2430a377a9bd3 (diff) |
FUNCT Add dummy header with buttons
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index 072f70a..c84169f 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -59,7 +59,7 @@ module.exports = { }), new ZipPlugin({ path: __dirname + '/dist', - filename: 'hvac', + filename: 'homescreen', extension: 'wgt', exclude: [] }) @@ -82,6 +82,18 @@ module.exports = { ] }, { + test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/, + use: [ + { + loader: 'file-loader', + options: { + name: '[name].[ext]', + outputPath: 'fonts/' + } + } + ] + }, + { test: /\.(gif|png|jpe?g|svg)$/i, use: [ 'file-loader', |