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