57 lines
1.4 KiB
JavaScript
57 lines
1.4 KiB
JavaScript
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,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
});
|