Add favicon

This commit is contained in:
Johannes Zillmann 2017-05-02 19:19:57 +02:00
parent d7ad8088a8
commit 908f0b4be1
3 changed files with 8 additions and 0 deletions

BIN
src/favicons/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 B

View File

@ -5,6 +5,8 @@
<title>PDF to Markdown</title>
<meta name="description" content="Converts PDF files to Markdown." />
<meta name="keywords" content="PDF, Markdown, converter, online">
<link rel="shortcut icon" href="favicons/favicon.ico" />
<link rel="icon" href="favicons/favicon.ico" />
</head>
<body>
<div id="main"/>

View File

@ -86,6 +86,12 @@ module.exports = {
from: NODEMODULES_DIR + '/pdfjs-dist/build/pdf.worker.js',
to: 'bundle.worker.js'
},
]),
new CopyWebpackPlugin([
{
from: SOURCE_DIR + '/favicons',
to: 'favicons'
},
])
]
}