blogpop/next.config.ts

18 lines
271 B
TypeScript
Raw Normal View History

2025-01-15 02:09:43 -05:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
env: {
BLOG_NAME: process.env.BLOG_NAME,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
2025-01-15 02:09:43 -05:00
};
export default nextConfig;