diff --git a/assets/images/apple-touch-icon.png b/assets/images/apple-touch-icon.png new file mode 100644 index 0000000..ac80d78 Binary files /dev/null and b/assets/images/apple-touch-icon.png differ diff --git a/assets/images/bios-pw-192.png b/assets/images/bios-pw-192.png new file mode 100644 index 0000000..059de89 Binary files /dev/null and b/assets/images/bios-pw-192.png differ diff --git a/assets/images/bios-pw-512.png b/assets/images/bios-pw-512.png new file mode 100644 index 0000000..d37b002 Binary files /dev/null and b/assets/images/bios-pw-512.png differ diff --git a/assets/images/bios-pw-logo.svg b/assets/images/bios-pw-logo.svg new file mode 100644 index 0000000..0befc32 --- /dev/null +++ b/assets/images/bios-pw-logo.svg @@ -0,0 +1,40 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/assets/images/favicon.ico b/assets/images/favicon.ico new file mode 100644 index 0000000..0f27abe Binary files /dev/null and b/assets/images/favicon.ico differ diff --git a/html/index.html b/html/index.html index ceab7b5..f0cd8d6 100644 --- a/html/index.html +++ b/html/index.html @@ -5,10 +5,10 @@ BIOS Master Password Generator for Laptops - + + + diff --git a/webpack.base.js b/webpack.base.js index 8d70461..a8d8174 100644 --- a/webpack.base.js +++ b/webpack.base.js @@ -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) @@ -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'}) ];