logos-press-engine/next.config.js

12 lines
287 B
JavaScript
Raw Normal View History

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