14 lines
310 B
JavaScript
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
|