PraxaLing / next.config.ts
Reubencf's picture
Deploy PraxaLing: component refactor, bug fixes, unified neo-brutal design, Qwen3.5 everywhere
2992997
Raw
History Blame Contribute Delete
431 Bytes
import type { NextConfig } from "next";
import path from "node:path";
const nextConfig: NextConfig = {
turbopack: {
root: path.resolve("."),
},
images: {
remotePatterns: [
{ protocol: "https", hostname: "cdn-avatars.huggingface.co" },
{ protocol: "https", hostname: "huggingface.co" },
{ protocol: "https", hostname: "*.public.blob.vercel-storage.com" },
],
},
};
export default nextConfig;