2025-01-02 14:40:56 +00:00
|
|
|
import type { NextConfig } from 'next'
|
2025-01-01 12:10:22 +00:00
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
|
|
|
/* config options here */
|
|
|
|
reactStrictMode: true,
|
2025-01-02 14:40:56 +00:00
|
|
|
images: {
|
2025-01-04 04:48:34 +00:00
|
|
|
remotePatterns: [
|
|
|
|
{
|
|
|
|
protocol: 'https',
|
|
|
|
hostname: 'raw.sn.solsynth.dev',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
protocol: 'https',
|
|
|
|
hostname: 'api.sn.solsynth.dev',
|
|
|
|
},
|
|
|
|
],
|
2025-01-02 14:40:56 +00:00
|
|
|
},
|
|
|
|
}
|
2025-01-01 12:10:22 +00:00
|
|
|
|
2025-01-02 14:40:56 +00:00
|
|
|
export default nextConfig
|