[modern-react] 리액트 스터디 파일 추가
This commit is contained in:
18
modern-react/my-next/next.config.mjs
Normal file
18
modern-react/my-next/next.config.mjs
Normal file
@@ -0,0 +1,18 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
experimental: {
|
||||
serverActions: true,
|
||||
},
|
||||
images: {
|
||||
remotePatterns: [
|
||||
{
|
||||
hostname: 'books.google.com'
|
||||
},
|
||||
{
|
||||
hostname: 'wikibook.co.kr'
|
||||
},
|
||||
]
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
Reference in New Issue
Block a user