diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-06-20 12:52:29 +0200 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 19:20:13 +0100 |
commit | 0a898f853727a8600ecc57617b006af0f9694502 (patch) | |
tree | 6c2448dc5ff9692583fb83d4609bdca50044cf42 /webpack.config.js | |
parent | b1f53f7ee96455fcca4c6e5273c41dd5e498a735 (diff) |
FUNCT Add support to load apps from AGL
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index b875b6c..2b74bb2 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -32,12 +32,17 @@ module.exports = { from: 'src/mockups/*', to: 'mockups/', flatten: true + }, + { + from: 'src/images/*', + to: 'images/', + flatten: true } ]), new HtmlWebpackPlugin({ template: 'src/index.html', filename: 'index.html', - inject: 'head' + inject: 'body' }), new MiniCSSExtractPlugin({ filename: 'app.css', |