24 lines
532 B
TypeScript
24 lines
532 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
experimental: {
|
|
optimizePackageImports: [
|
|
"@tabler/icons-react",
|
|
"lucide-react",
|
|
"@radix-ui/react-icons",
|
|
"recharts",
|
|
"@workos-inc/node",
|
|
"date-fns",
|
|
"remeda",
|
|
"framer-motion",
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|
|
|
|
// Cloudflare dev proxy removed for local dev - uses sql.js instead
|