Commit 7eadeab9fbe96b310ec51e164c174bb557d50099
1 parent
36d02848
feat: add no cache meta tag to index.html
Showing
1 changed file
with
10 additions
and
1 deletions
... | ... | @@ -5,13 +5,18 @@ |
5 | 5 | <meta charset="UTF-8" /> |
6 | 6 | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
7 | 7 | <meta name="renderer" content="webkit" /> |
8 | + <meta http-equiv="Expires" content="0" /> | |
9 | + <meta http-equiv="Pragma" content="no-cache" /> | |
10 | + <meta http-equiv="Cache-control" content="no-cache" /> | |
11 | + <meta http-equiv="Cache" content="no-cache" /> | |
8 | 12 | <meta |
9 | 13 | name="viewport" |
10 | 14 | content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" |
11 | 15 | /> |
12 | - <title><%= title %></title> | |
16 | + <title> <%= title %> </title> | |
13 | 17 | <link rel="icon" href="/favicon.ico" /> |
14 | 18 | </head> |
19 | + | |
15 | 20 | <body> |
16 | 21 | <script> |
17 | 22 | (() => { |
... | ... | @@ -128,23 +133,27 @@ |
128 | 133 | -webkit-animation-delay: 1.2s; |
129 | 134 | animation-delay: 1.2s; |
130 | 135 | } |
136 | + | |
131 | 137 | @keyframes antRotate { |
132 | 138 | to { |
133 | 139 | -webkit-transform: rotate(405deg); |
134 | 140 | transform: rotate(405deg); |
135 | 141 | } |
136 | 142 | } |
143 | + | |
137 | 144 | @-webkit-keyframes antRotate { |
138 | 145 | to { |
139 | 146 | -webkit-transform: rotate(405deg); |
140 | 147 | transform: rotate(405deg); |
141 | 148 | } |
142 | 149 | } |
150 | + | |
143 | 151 | @keyframes antSpinMove { |
144 | 152 | to { |
145 | 153 | opacity: 1; |
146 | 154 | } |
147 | 155 | } |
156 | + | |
148 | 157 | @-webkit-keyframes antSpinMove { |
149 | 158 | to { |
150 | 159 | opacity: 1; | ... | ... |