Skip to content

Instantly share code, notes, and snippets.

@TuenTuenna
Last active August 20, 2022 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TuenTuenna/0129f1ffb0627ecc9e54ad198f53c10b to your computer and use it in GitHub Desktop.
Save TuenTuenna/0129f1ffb0627ecc9e54ad198f53c10b to your computer and use it in GitHub Desktop.
nextjs config - 업로드한 이미지 안보일때
/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: true,
  images: {
      domains: [
          'www.notion.so',
          'images.unsplash.com',
          's3.us-west-2.amazonaws.com'
      ],
      format: ['image/png', 'image/webp', 'image/jpeg']
  }
}

module.exports = nextConfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment