Skip to content

Instantly share code, notes, and snippets.

@gaurangrshah
Created June 6, 2022 00:16
Show Gist options
  • Save gaurangrshah/dc54d64be4885b22ce8c413c354a6d65 to your computer and use it in GitHub Desktop.
Save gaurangrshah/dc54d64be4885b22ce8c413c354a6d65 to your computer and use it in GitHub Desktop.
next.js config
{
"compilerOptions": {
"baseUrl": "pages",
"paths": { "@/*": ["../*"] }
}
}
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ['cdn.jsdelivr.net'],
},
};
module.exports = nextConfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment