logos-press-engine/next.config.js

16 lines
324 B
JavaScript
Raw Normal View History

2023-04-14 14:29:32 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2024-01-29 13:39:35 +00:00
reactStrictMode: true,
images: {
domains: [
'localhost',
'127.0.0.1',
'image.simplecastcdn.com',
'img.youtube.com',
2024-01-30 11:45:46 +00:00
'cms-press.logos.co'
2024-01-29 13:39:35 +00:00
],
},
2023-04-14 14:29:32 +00:00
}
module.exports = nextConfig