11 lines
175 B
TypeScript
11 lines
175 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
turbopack: {
|
|
root: process.cwd(),
|
|
},
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default nextConfig;
|