3d381944d2
Next.js + Express event management app for Hope Family Church.
16 lines
284 B
TypeScript
16 lines
284 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
domains: ['images.unsplash.com'],
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
compiler: {
|
|
removeConsole: process.env.NODE_ENV === 'production',
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|