BillTracker/vite.config.mjs

75 lines
2.4 KiB
JavaScript
Raw Normal View History

2026-05-03 19:51:57 -05:00
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { VitePWA } from 'vite-plugin-pwa';
2026-05-03 19:51:57 -05:00
import path from 'path';
import { fileURLToPath } from 'url';
2026-05-14 21:00:07 -05:00
import { createRequire } from 'module';
2026-05-03 19:51:57 -05:00
const __dirname = path.dirname(fileURLToPath(import.meta.url));
2026-05-14 21:00:07 -05:00
const require = createRequire(import.meta.url);
const pkg = require('./package.json');
const apiPort = process.env.API_PORT || process.env.PORT || 3000;
2026-05-03 19:51:57 -05:00
export default defineConfig({
plugins: [
react(),
VitePWA({
registerType: 'autoUpdate',
includeAssets: ['img/logo.png', 'img/pwa-192.png', 'img/pwa-512.png'],
manifest: {
name: 'BillTracker',
short_name: 'BillTracker',
description: 'Personal bill planning and tracking',
theme_color: '#18181b',
background_color: '#18181b',
display: 'standalone',
start_url: '/',
icons: [
{ src: '/img/pwa-192.png', sizes: '192x192', type: 'image/png' },
{ src: '/img/pwa-512.png', sizes: '512x512', type: 'image/png', purpose: 'any maskable' },
],
},
workbox: {
globPatterns: ['**/*.{js,css,html,ico,png,svg,woff2}'],
runtimeCaching: [
{
urlPattern: /^\/api\/(tracker|bills|calendar|summary|analytics|snowball|categories)/,
handler: 'NetworkFirst',
options: {
cacheName: 'api-cache',
networkTimeoutSeconds: 5,
expiration: { maxEntries: 30, maxAgeSeconds: 300 },
},
},
],
},
}),
],
2026-05-03 22:33:21 -05:00
publicDir: 'client/public',
2026-05-14 21:00:07 -05:00
define: {
// Injected at build time — frontend reads this instead of maintaining a
// duplicate version string in client/lib/version.js
__APP_VERSION__: JSON.stringify(pkg.version),
},
2026-05-03 19:51:57 -05:00
resolve: {
alias: { '@': path.resolve(__dirname, './client') },
},
server: {
port: 5173,
proxy: {
'/api': { target: `http://localhost:${apiPort}`, changeOrigin: true },
2026-05-03 19:51:57 -05:00
},
},
build: {
outDir: 'dist',
emptyOutDir: true,
},
// Vitest — client-side unit tests (pure logic in client/lib).
// Server tests stay on node:test (`npm run test`); client tests run with
// `npm run test:client`; `npm run test:all` runs both.
test: {
environment: 'node', // hook/component tests opt into jsdom via @vitest-environment
include: ['client/**/*.test.{js,jsx}'],
},
2026-05-03 19:51:57 -05:00
});