logos-press-engine/next.config.js

16 lines
314 B
JavaScript
Raw Normal View History

2023-04-14 14:29:32 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2023-08-18 17:55:18 +00:00
reactStrictMode: true,
images: {
domains: [
'images.cdn.unbody.io',
'image.simplecastcdn.com',
'img.youtube.com',
],
// loader: 'imgix',
// path: 'https://images.cdn.unbody.io',
},
2023-04-14 14:29:32 +00:00
}
module.exports = nextConfig