feat: TreatVault encrypted secret manager with Docker Swarm sync and console plugin

This commit is contained in:
2026-09-16 16:06:41 -04:00
parent 61a45a4310
commit 63ee4a99e6
25 changed files with 5976 additions and 1 deletions

18
ui/vite.config.ts Normal file
View File

@@ -0,0 +1,18 @@
import { svelte } from '@sveltejs/vite-plugin-svelte';
import { defineConfig } from 'vite';
import { resolve } from 'node:path';
export default defineConfig({
plugins: [svelte({ compilerOptions: { customElement: true } })],
build: {
lib: {
entry: resolve(__dirname, 'src/entry.ts'),
formats: ['es'],
fileName: () => 'assets/entry.js'
},
outDir: '../internal/adminui/dist',
emptyOutDir: true,
target: 'es2022'
},
test: { environment: 'jsdom' }
});