12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
reactCompiler: true,
|
|
images: {
|
|
domains: ['s3.ir-thr-at1.arvanstorage.ir'], // add this line
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|