Files
wireguard-vpn/app/frontend/tailwind.config.js
T
datadunia 6d8899a078 feat(app): add WGRplane web UI and backend features
- Add Vue 3 frontend with glassmorphism design (Tailwind CSS)
- Add Go backend handlers: auth, webhooks, stats, scheduler, validation
- Add i18n support (EN, ID, ZH)
- Add Swagger docs and API handlers
- Add nftables integration and plugins support
- Remove deprecated go.mod (migrated to wgrplane)
2026-05-03 23:20:34 +07:00

21 lines
339 B
JavaScript

export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
backdropBlur: {
xs: '2px',
},
boxShadow: {
glass: '0 8px 32px 0 rgba(31, 38, 135, 0.37)',
},
},
},
plugins: [
require('@tailwindcss/forms'),
],
}