blogpop/next.config.ts

10 lines
157 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,
},
};
export default nextConfig;