35 lines
720 B
TypeScript
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;
|