Files
FullStack-Blog-Nestjs-Nextj…/frontend/next.config.ts
2026-02-18 22:27:05 +09:00

23 lines
397 B
TypeScript

import type { NextConfig } from "next";
import path from "path";
const nextConfig: NextConfig = {
turbopack: {
root: path.resolve(__dirname),
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
},
{
protocol: "https",
hostname: "**.unsplash.com",
},
],
},
};
export default nextConfig;