hackdex-website/next.config.ts
2025-10-10 23:40:44 -10:00

18 lines
312 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
protocol: 'http',
hostname: '127.0.0.1',
port: '54321',
pathname: '/storage/v1/**',
},
],
},
};
export default nextConfig;