This commit is contained in:
2026-01-26 19:24:43 +00:00
commit 43a1c758b3
825 changed files with 121893 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
import { defineConfig, loadEnv } from 'vite';
import react from '@vitejs/plugin-react';
import { VitePWA } from 'vite-plugin-pwa';
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd(), '');
const rawTarget = env.VITE_BACKEND_URL || 'http://127.0.0.1:5001';
const apiTarget = rawTarget.replace(/\/api\/?$/, '');
return {
plugins: [
react(),
VitePWA({
registerType: 'autoUpdate',
devOptions: {
enabled: false
},
manifest: {
name: 'Vault Storage',
short_name: 'Vault',
description: 'Vault storage capacity overview for Proxmox, PBS, and TrueNAS.',
start_url: '/',
display: 'standalone',
background_color: '#f3f6fb',
theme_color: '#0f766e',
icons: [
{
src: '/icons/icon-192.svg',
sizes: '192x192',
type: 'image/svg+xml',
purpose: 'any'
},
{
src: '/icons/icon-512.svg',
sizes: '512x512',
type: 'image/svg+xml',
purpose: 'any maskable'
}
]
}
})
],
server: {
host: true,
port: 5200,
allowedHosts: true,
strictPort: true,
proxy: {
'/api': {
target: apiTarget,
changeOrigin: true,
},
},
},
};
});