Skip to content

Commit

Permalink
Add favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
bacher09 committed Sep 4, 2019
1 parent fd33def commit 1c06c33
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 10 deletions.
Binary file added assets/images/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/bios-pw-192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/bios-pw-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions assets/images/bios-pw-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/favicon.ico
Binary file not shown.
6 changes: 3 additions & 3 deletions html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<meta name="keywords" content="bios, password, bypass, master password, generate, generator, laptop, notebook, computer, phoenix, insydeh20, sony, samsung, acer, dell, compaq, backdoor, laptop, fujitsu-siemens, hp, hewlett packard" />
<meta name="keywords" content="Recover laptops with lost BIOS password" />
<title>BIOS Master Password Generator for Laptops</title>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="assets/bootstrap.min.css" rel="stylesheet" />
<link rel="icon" type="image/x-ico" href="favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/images/bios-pw-192.png">
<style>
input#serial_id, div#answer { font-family: monospace }
</style>
Expand Down
12 changes: 5 additions & 7 deletions webpack.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,9 @@ function getWebpackConfig(production, gtag) {
var plugins = [
new CleanWebpackPlugin(),
new CopyWebpackPlugin([
{
from: 'assets/bootstrap.min.css',
to: 'assets/'
}
{from: 'assets/bootstrap.min.css', to: 'assets/'},
{from: 'assets/images/favicon.ico', to: 'favicon.ico'},
{from: 'assets/images/', to: 'assets/images/'},
]),
new DefinePlugin({
GOOGLE_ANALYTICS_TAG: JSON.stringify(gtag)
Expand All @@ -82,10 +81,9 @@ function getWebpackConfig(production, gtag) {
minify: {
collapseWhitespace: true,
conservativeCollapse: true,
removeComments: true
removeComments: true,
},
inject: true,
template: 'html/index.html'
template: 'html/index.html',
}),
new VersionInfoPlugin({filename: 'version-info.txt'})
];
Expand Down

0 comments on commit 1c06c33

Please sign in to comment.