c869d4958e
Bump Next.js from v9 to v16.2.6 and add node-ical to serverExternalPackages. Remove Geist font dependencies in favor of system fonts. Fix state updates in geocode hooks to prevent stale closures. Expose ApiClient methods as public and improve error handling in fetchWithRetry.
20 lines
355 B
TypeScript
20 lines
355 B
TypeScript
import type {} from "vitest/config";
|
|
import react from "@vitejs/plugin-react";
|
|
import path from "path";
|
|
|
|
const config = {
|
|
plugins: [react()],
|
|
test: {
|
|
environment: "jsdom",
|
|
globals: true,
|
|
setupFiles: ["./src/test/setup.ts"],
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|