13 lines
222 B
TypeScript
13 lines
222 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
unoptimized: false,
|
|
remotePatterns: [],
|
|
},
|
|
/* config options here */
|
|
};
|
|
|
|
export default nextConfig;
|