Capital/next.config.ts

12 lines
233 B
TypeScript
Raw Normal View History

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: {
domains: ['raw.sn.solsynth.dev', 'api.sn.solsynth.dev'],
},
}
2025-01-01 12:10:22 +00:00
2025-01-02 14:40:56 +00:00
export default nextConfig