11 lines
242 B
TypeScript
11 lines
242 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
images: {
|
|
domains: ["pbs.twimg.com","vps.playpoolstudios.com"], // ✅ add Twitter's image domain
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|