LouisLam
4 years ago
commit
d9cd2c3d35
4 changed files with 3543 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="en"> |
|||
<head> |
|||
<meta charset="UTF-8" /> |
|||
<link rel="icon" href="/favicon.ico" /> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
|||
<title>Uptime Kuma</title> |
|||
</head> |
|||
<body> |
|||
<div id="app"></div> |
|||
<script type="module" src="/src/main.js"></script> |
|||
</body> |
|||
</html> |
File diff suppressed because it is too large
@ -0,0 +1,31 @@ |
|||
{ |
|||
"name": "uptime-kuma", |
|||
"version": "0.0.0", |
|||
"scripts": { |
|||
"dev": "vite", |
|||
"build": "vite build", |
|||
"serve": "vite preview" |
|||
}, |
|||
"dependencies": { |
|||
"@popperjs/core": "^2.9.2", |
|||
"axios": "^0.21.1", |
|||
"bootstrap": "^5.0.0", |
|||
"dayjs": "^1.10.4", |
|||
"express": "^4.17.1", |
|||
"jsonwebtoken": "^8.5.1", |
|||
"password-hash": "^1.2.2", |
|||
"redbean-node": "0.0.20", |
|||
"socket.io": "^4.0.2", |
|||
"socket.io-client": "^4.1.2", |
|||
"vue": "^3.0.5", |
|||
"vue-confirm-dialog": "^1.0.2", |
|||
"vue-router": "^4.0.10", |
|||
"vue-toastification": "^2.0.0-rc.1" |
|||
}, |
|||
"devDependencies": { |
|||
"@vitejs/plugin-vue": "^1.2.3", |
|||
"@vue/compiler-sfc": "^3.0.5", |
|||
"sass": "^1.35.1", |
|||
"vite": "^2.3.7" |
|||
} |
|||
} |
@ -0,0 +1,7 @@ |
|||
import { defineConfig } from 'vite' |
|||
import vue from '@vitejs/plugin-vue' |
|||
|
|||
// https://vitejs.dev/config/
|
|||
export default defineConfig({ |
|||
plugins: [vue()] |
|||
}) |
Loading…
Reference in new issue