logos-press-engine/next.config.js

15 lines
253 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: [
'localhost',
'127.0.0.1',
2023-08-18 17:55:18 +00:00
'image.simplecastcdn.com',
'img.youtube.com',
],
},
2023-04-14 14:29:32 +00:00
}
module.exports = nextConfig