10 lines
146 B
TypeScript
10 lines
146 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
unoptimized: false,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|