21 lines
371 B
TypeScript
21 lines
371 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
reactStrictMode: true,
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'raw.sn.solsynth.dev',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'api.sn.solsynth.dev',
|
|
},
|
|
],
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|