Major update, devices view and components

The view for devices is functional now. It is possible to view, link and unlink devices and possible to gain access to authenticated endpoints with a key encrypted by a one time pin.
This commit is contained in:
Jesse Malotaux 2025-04-04 11:29:19 +02:00
parent b598a090bc
commit a01e026aa1
12 changed files with 1282 additions and 673 deletions

View file

@ -7,16 +7,25 @@ import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
server: {
host: 'localhost',
port: 5173,
watch: {
usePolling: true,
},
},
plugins: [vue(), vueDevTools(), tailwindcss()],
envDir: '../',
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
base: '/',
publicDir: '../public',
// publicDir: "../public",
build: {
outDir: '../public',
sourcemap: true,
sourcemap: false,
minify: false,
},
})