Files
octto-engenharia/frontend/next.config.ts

11 lines
197 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
images: {
domains: ['localhost', 'images.unsplash.com'],
},
};
export default nextConfig;