Commit 7eadeab9fbe96b310ec51e164c174bb557d50099

Authored by ww
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,13 +5,18 @@
5 <meta charset="UTF-8" /> 5 <meta charset="UTF-8" />
6 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> 6 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7 <meta name="renderer" content="webkit" /> 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 <meta 12 <meta
9 name="viewport" 13 name="viewport"
10 content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" 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 <link rel="icon" href="/favicon.ico" /> 17 <link rel="icon" href="/favicon.ico" />
14 </head> 18 </head>
  19 +
15 <body> 20 <body>
16 <script> 21 <script>
17 (() => { 22 (() => {
@@ -128,23 +133,27 @@ @@ -128,23 +133,27 @@
128 -webkit-animation-delay: 1.2s; 133 -webkit-animation-delay: 1.2s;
129 animation-delay: 1.2s; 134 animation-delay: 1.2s;
130 } 135 }
  136 +
131 @keyframes antRotate { 137 @keyframes antRotate {
132 to { 138 to {
133 -webkit-transform: rotate(405deg); 139 -webkit-transform: rotate(405deg);
134 transform: rotate(405deg); 140 transform: rotate(405deg);
135 } 141 }
136 } 142 }
  143 +
137 @-webkit-keyframes antRotate { 144 @-webkit-keyframes antRotate {
138 to { 145 to {
139 -webkit-transform: rotate(405deg); 146 -webkit-transform: rotate(405deg);
140 transform: rotate(405deg); 147 transform: rotate(405deg);
141 } 148 }
142 } 149 }
  150 +
143 @keyframes antSpinMove { 151 @keyframes antSpinMove {
144 to { 152 to {
145 opacity: 1; 153 opacity: 1;
146 } 154 }
147 } 155 }
  156 +
148 @-webkit-keyframes antSpinMove { 157 @-webkit-keyframes antSpinMove {
149 to { 158 to {
150 opacity: 1; 159 opacity: 1;