Files
study/modern-react/my-next/next.config.mjs

19 lines
292 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverActions: true,
},
images: {
remotePatterns: [
{
hostname: 'books.google.com'
},
{
hostname: 'wikibook.co.kr'
},
]
},
};
export default nextConfig;