BillTracker/vite.config.mjs

129 lines
4.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 tailwindcss from '@tailwindcss/vite';
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));
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: [
tailwindcss(),
// React Compiler (React 19): auto-memoizes components/hooks at build time, so
// manual useMemo/useCallback become largely unnecessary. Safe here because the
// codebase is rules-of-hooks clean (enforced by eslint-plugin-react-hooks).
react({
babel: {
plugins: [['babel-plugin-react-compiler', {}]],
},
}),
VitePWA({
registerType: 'autoUpdate',
includeAssets: [
2026-07-06 12:54:29 -05:00
'brand/favicon.svg',
'brand/favicon.ico',
'brand/mark.svg',
2026-07-06 12:54:29 -05:00
'brand/mark.png',
'brand/mark-mono.svg',
'brand/lockup.svg',
'brand/lockup-light.svg',
2026-07-06 12:54:29 -05:00
'brand/logo.png',
'brand/empty-state.svg',
'brand/social-preview.svg',
2026-07-06 12:54:29 -05:00
'brand/social-preview.png',
'brand/pwa-maskable.svg',
'brand/glyphs/tracker.svg',
'brand/glyphs/bills.svg',
'brand/glyphs/calendar.svg',
'brand/glyphs/analytics.svg',
'brand/glyphs/data-banking.svg',
'brand/glyphs/snowball-payoff.svg',
'brand/glyphs/admin-security.svg',
'brand/pwa-192.png',
'brand/pwa-512.png',
2026-07-06 12:54:29 -05:00
'brand/pwa-maskable-512.png',
],
manifest: {
name: 'Bill Tracker',
short_name: 'Bill Tracker',
description: 'Personal bill planning and tracking',
theme_color: '#101417',
background_color: '#101417',
display: 'standalone',
start_url: '/',
icons: [
{ src: '/brand/pwa-192.png', sizes: '192x192', type: 'image/png' },
2026-07-06 12:54:29 -05:00
{ src: '/brand/pwa-512.png', sizes: '512x512', type: 'image/png', purpose: 'any' },
{
src: '/brand/pwa-maskable-512.png',
sizes: '512x512',
type: 'image/png',
purpose: '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,
rollupOptions: {
output: {
// QA-B0-01: split the shared vendor code out of the ~659 kB index chunk
// so large libs load/cache independently and the main bundle shrinks.
// Function form: vite 8 (rolldown core) dropped the object form.
manualChunks(id) {
if (!id.includes('node_modules')) return undefined;
if (/node_modules[\\/](react|react-dom|react-router|react-router-dom)[\\/]/.test(id))
return 'vendor-react';
if (/node_modules[\\/]@radix-ui[\\/]/.test(id)) return 'vendor-radix';
if (/node_modules[\\/]framer-motion[\\/]/.test(id)) return 'vendor-motion';
if (/node_modules[\\/]@tanstack[\\/]/.test(id)) return 'vendor-query';
return undefined;
},
},
},
2026-05-03 19:51:57 -05:00
},
// 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,ts,tsx}'],
},
2026-05-03 19:51:57 -05:00
});