Skip to content

Commit

Permalink
Add favicon and configure webpack to support it
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamRisberg committed Apr 11, 2019
1 parent fafc52c commit d8e858f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file added examples/src/favicon.ico
Binary file not shown.
3 changes: 2 additions & 1 deletion webpack.config.js
Expand Up @@ -2,7 +2,8 @@ const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const htmlWebpackPlugin = new HtmlWebpackPlugin({
template: path.join(__dirname, "examples/src/index.html"),
filename: "./index.html"
filename: "./index.html",
favicon: "./examples/src/favicon.ico"
});

module.exports = {
Expand Down

0 comments on commit d8e858f

Please sign in to comment.