mirror of https://github.com/wg-easy/wg-easy
committed by
Sergei Birukov
16 changed files with 1 additions and 3743 deletions
@ -1,16 +0,0 @@ |
|||||
<!DOCTYPE html> |
|
||||
<html lang="en"> |
|
||||
<head> |
|
||||
<meta charset="UTF-8"> |
|
||||
<title>WireGuard</title> |
|
||||
<link rel="manifest" href="./manifest.json"> |
|
||||
<link rel="icon" type="image/png" href="./img/favicon.png"> |
|
||||
<link rel="apple-touch-icon" href="./img/apple-touch-icon.png"> |
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> |
|
||||
<meta name="apple-mobile-web-app-capable" content="yes"> |
|
||||
</head> |
|
||||
<body class="bg-gray-50 dark:bg-neutral-800"> |
|
||||
<div id="app"></div> |
|
||||
<script type="module" src="/src/main.js"></script> |
|
||||
</body> |
|
||||
</html> |
|
||||
@ -1,8 +0,0 @@ |
|||||
{ |
|
||||
"compilerOptions": { |
|
||||
"paths": { |
|
||||
"@/*": ["./src/*"] |
|
||||
} |
|
||||
}, |
|
||||
"exclude": ["node_modules", "dist"] |
|
||||
} |
|
||||
File diff suppressed because it is too large
@ -1,21 +0,0 @@ |
|||||
{ |
|
||||
"name": "webui", |
|
||||
"version": "0.0.0", |
|
||||
"private": true, |
|
||||
"type": "module", |
|
||||
"scripts": { |
|
||||
"dev": "vite", |
|
||||
"build": "vite build", |
|
||||
"preview": "vite preview" |
|
||||
}, |
|
||||
"dependencies": { |
|
||||
"vue": "^3.3.11" |
|
||||
}, |
|
||||
"devDependencies": { |
|
||||
"@vitejs/plugin-vue": "^4.5.2", |
|
||||
"autoprefixer": "^10.4.16", |
|
||||
"postcss": "^8.4.33", |
|
||||
"tailwindcss": "^3.4.1", |
|
||||
"vite": "^5.0.10" |
|
||||
} |
|
||||
} |
|
||||
@ -1,6 +0,0 @@ |
|||||
export default { |
|
||||
plugins: { |
|
||||
tailwindcss: {}, |
|
||||
autoprefixer: {}, |
|
||||
}, |
|
||||
} |
|
||||
|
Before Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 2.9 KiB |
@ -1,11 +0,0 @@ |
|||||
{ |
|
||||
"name": "WireGuard", |
|
||||
"display": "standalone", |
|
||||
"background_color": "#fff", |
|
||||
"icons": [ |
|
||||
{ |
|
||||
"src": "img/favicon.png", |
|
||||
"type": "image/png" |
|
||||
} |
|
||||
] |
|
||||
} |
|
||||
File diff suppressed because it is too large
|
Before Width: | Height: | Size: 3.0 KiB |
@ -1,3 +0,0 @@ |
|||||
@tailwind base; |
|
||||
@tailwind components; |
|
||||
@tailwind utilities; |
|
||||
@ -1,6 +0,0 @@ |
|||||
import './assets/style.css' |
|
||||
|
|
||||
import { createApp } from 'vue' |
|
||||
import App from './App.vue' |
|
||||
|
|
||||
createApp(App).mount('#app') |
|
||||
@ -1,11 +0,0 @@ |
|||||
/** @type {import('tailwindcss').Config} */ |
|
||||
export default { |
|
||||
content: [ |
|
||||
"./index.html", |
|
||||
"./src/**/*.{vue,js,ts,jsx,tsx}", |
|
||||
], |
|
||||
theme: { |
|
||||
extend: {}, |
|
||||
}, |
|
||||
plugins: [], |
|
||||
} |
|
||||
@ -1,16 +0,0 @@ |
|||||
import { fileURLToPath, URL } from 'node:url' |
|
||||
|
|
||||
import { defineConfig } from 'vite' |
|
||||
import vue from '@vitejs/plugin-vue' |
|
||||
|
|
||||
// https://vitejs.dev/config/
|
|
||||
export default defineConfig({ |
|
||||
plugins: [ |
|
||||
vue(), |
|
||||
], |
|
||||
resolve: { |
|
||||
alias: { |
|
||||
'@': fileURLToPath(new URL('./src', import.meta.url)) |
|
||||
} |
|
||||
} |
|
||||
}) |
|
||||
Loading…
Reference in new issue