11 lines
205 B
JavaScript
11 lines
205 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
typescript: { ignoreBuildErrors: false },
|
|
turbopack: {
|
|
root: process.cwd()
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|