3 changed files with 19 additions and 18 deletions
			
			
		| @ -1,16 +1,16 @@ | |||||
| <!DOCTYPE html> | <!DOCTYPE html> | ||||
| <html lang="en"> | <html lang="en"> | ||||
|   <head> | <head> | ||||
|     <meta charset="UTF-8" /> |     <meta charset="UTF-8" /> | ||||
|     <link rel="icon" type="image/svg+xml" href="/icon.svg" /> |     <link rel="icon" type="image/svg+xml" href="/icon.svg" /> | ||||
|     <link rel="apple-touch-icon" href="/apple-touch-icon.png"> |     <link rel="apple-touch-icon" href="./apple-touch-icon.png"> | ||||
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |     <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||||
|     <meta name="theme-color" content="#5cdd8b" /> |     <meta name="theme-color" content="#5cdd8b" /> | ||||
|     <meta name="description" content="Uptime Kuma monitoring tool" /> |     <meta name="description" content="Uptime Kuma monitoring tool" /> | ||||
|     <title>Uptime Kuma</title> |     <title>Uptime Kuma</title> | ||||
|   </head> | </head> | ||||
|   <body> | <body> | ||||
|     <div id="app"></div> | <div id="app"></div> | ||||
|     <script type="module" src="/src/main.js"></script> | <script type="module" src="./src/main.js"></script> | ||||
|   </body> | </body> | ||||
| </html> | </html> | ||||
|  | |||||
| @ -1,14 +1,15 @@ | |||||
| import { defineConfig } from 'vite' | import { defineConfig } from "vite" | ||||
| import vue from '@vitejs/plugin-vue' | import vue from "@vitejs/plugin-vue" | ||||
| import legacy from '@vitejs/plugin-legacy' | import legacy from "@vitejs/plugin-legacy" | ||||
| 
 | 
 | ||||
| // https://vitejs.dev/config/
 | // https://vitejs.dev/config/
 | ||||
| export default defineConfig({ | export default defineConfig({ | ||||
|   plugins: [ |     base: "./", | ||||
|       vue(), |     plugins: [ | ||||
|       legacy({ |         vue(), | ||||
|           targets: ['ie > 11'], |         legacy({ | ||||
|           additionalLegacyPolyfills: ['regenerator-runtime/runtime'] |             targets: ["ie > 11"], | ||||
|       }) |             additionalLegacyPolyfills: ["regenerator-runtime/runtime"] | ||||
|   ] |         }) | ||||
|  |     ] | ||||
| }) | }) | ||||
|  | |||||
					Loading…
					
					
				
		Reference in new issue