Skip to content
Snippets Groups Projects
next.config.js 177 B
/** @type {import('next').NextConfig} */
const nextConfig = {
    images: {
        unoptimized: true,
        domains: ["images.igdb.com"]
    }
}

module.exports = nextConfig