import { defineConfig } from 'vitest/config'; import { sveltekit } from '@sveltejs/kit/vite'; export default defineConfig({ server: { proxy: { '/api': { target: process.env.API_TARGET || 'http://localhost:8080', changeOrigin: true, secure: false, configure: (proxy, _options) => { proxy.on('error', (err, _req, _res) => { console.log('proxy err:', err); }); proxy.on('proxyReq', (proxyReq, req, _res) => { console.log('Sending Request to the Target:', req.method, req.url); }); proxy.on('proxyRes', (proxyRes, req, _res) => { console.log( 'Received Response from the Target:', proxyRes.statusCode, req.url ); }); }, }, }, }, plugins: [sveltekit()], build: { // Keep the generated bundle compatible with older mobile browsers. // The default Vite target follows a modern baseline that can be too new // for older iOS Safari releases reported in issue #903. target: ['es2018', 'safari12'], // Force everything into one HTML file. SvelteKit will still generate // a lot of JS files but they are deadweight and will not be included // in the rust binary. assetsInlineLimit: Infinity, }, test: { include: ['src/**/*.{test,spec}.{js,ts}'], }, });