secret/next.config.js
2023-09-10 14:32:18 +05:30

14 lines
310 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
dangerouslyAllowSVG: true,
i18n: {
locales: ['en'],
defaultLocale: 'en',
},
images: {
domains: ['source.unsplash.com', 'image.tmdb.org','i.therarbg.com','localhost'],
},
reactStrictMode: true,
}
module.exports = nextConfig