mirror of
https://github.com/acid-info/logos-press-engine.git
synced 2025-02-22 14:18:14 +00:00
16 lines
314 B
JavaScript
16 lines
314 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
domains: [
|
|
'images.cdn.unbody.io',
|
|
'image.simplecastcdn.com',
|
|
'img.youtube.com',
|
|
],
|
|
// loader: 'imgix',
|
|
// path: 'https://images.cdn.unbody.io',
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|