taxonomy/next.config.js
2022-11-03 15:12:02 +04:00

13 lines
255 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
domains: ["avatars.githubusercontent.com"],
},
experimental: {
appDir: true,
newNextLinkBehavior: true,
},
}
module.exports = nextConfig