wag-frontend-version-3/next.config.ts

15 lines
231 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "s.tmimgcdn.com",
},
],
},
};
export default nextConfig;