Files
FullStack-Blog-Nestjs-Nextj…/frontend/next.config.ts
2026-02-18 23:11:46 +09:00

14 lines
226 B
TypeScript

import type { NextConfig } from "next";
import path from "path";
const nextConfig: NextConfig = {
turbopack: {
root: path.resolve(__dirname),
},
images: {
unoptimized: true,
},
};
export default nextConfig;