20 lines
340 B
TypeScript
20 lines
340 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
turbopack: {
|
|
root: process.cwd(),
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**',
|
|
},
|
|
],
|
|
// Allow local file system images via next/image
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|