logos-press-engine/next.config.js

12 lines
260 B
JavaScript
Raw Normal View History

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