planpost-offer-landing/next.config.ts
2025-12-02 14:59:58 +06:00

35 lines
720 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "supabase-db.planpostai.com",
port: "",
pathname: "/**",
},
{
protocol: "https",
hostname: "static.wikia.nocookie.net",
port: "",
pathname: "/**",
},
{
protocol: "https",
hostname: "images.unsplash.com",
port: "",
pathname: "/**",
},
],
},
// Explicitly enable CSS
webpack: (config) => {
config.resolve.extensions.push(".css");
return config;
},
};
export default nextConfig;