Capital/next.config.ts
LittleSheep 8cbdc7c870 App drawer
💄 Support breaks for story posts
2025-01-04 12:48:34 +08:00

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