mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2024-11-21 23:33:31 +01:00
Add favicon
This commit is contained in:
parent
d7ad8088a8
commit
908f0b4be1
BIN
src/favicons/favicon.ico
Normal file
BIN
src/favicons/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 318 B |
@ -5,6 +5,8 @@
|
|||||||
<title>PDF to Markdown</title>
|
<title>PDF to Markdown</title>
|
||||||
<meta name="description" content="Converts PDF files to Markdown." />
|
<meta name="description" content="Converts PDF files to Markdown." />
|
||||||
<meta name="keywords" content="PDF, Markdown, converter, online">
|
<meta name="keywords" content="PDF, Markdown, converter, online">
|
||||||
|
<link rel="shortcut icon" href="favicons/favicon.ico" />
|
||||||
|
<link rel="icon" href="favicons/favicon.ico" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="main"/>
|
<div id="main"/>
|
||||||
|
@ -86,6 +86,12 @@ module.exports = {
|
|||||||
from: NODEMODULES_DIR + '/pdfjs-dist/build/pdf.worker.js',
|
from: NODEMODULES_DIR + '/pdfjs-dist/build/pdf.worker.js',
|
||||||
to: 'bundle.worker.js'
|
to: 'bundle.worker.js'
|
||||||
},
|
},
|
||||||
|
]),
|
||||||
|
new CopyWebpackPlugin([
|
||||||
|
{
|
||||||
|
from: SOURCE_DIR + '/favicons',
|
||||||
|
to: 'favicons'
|
||||||
|
},
|
||||||
])
|
])
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user