Skip to content

Commit e8ae9d9

Browse files
committedJul 25, 2020
Change favicon and title
1 parent 3d39b36 commit e8ae9d9

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed
 

‎public/favicon.ico

-4.19 KB
Binary file not shown.

‎public/favicon.png

8.22 KB
Loading

‎public/index.html

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="utf-8">
5-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6-
<meta name="viewport" content="width=device-width,initial-scale=1.0">
7-
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
4+
<meta charset="utf-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
7+
<link rel="icon" href="<%= BASE_URL %>favicon.png" />
88
<title><%= htmlWebpackPlugin.options.title %></title>
99
</head>
1010
<body>
1111
<noscript>
12-
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
12+
<strong
13+
>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work
14+
properly without JavaScript enabled. Please enable it to
15+
continue.</strong
16+
>
1317
</noscript>
1418
<div id="app"></div>
1519
<!-- built files will be auto injected -->

‎vue.config.js

+8
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,12 @@ module.exports = {
77
},
88
},
99
},
10+
pages: {
11+
index: {
12+
entry: "src/main.js",
13+
template: "public/index.html",
14+
filename: "index.html",
15+
title: "Открытки =)",
16+
},
17+
},
1018
};

1 commit comments

Comments
 (1)
Please sign in to comment.