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