14 lines
253 B
JavaScript
14 lines
253 B
JavaScript
import { fileURLToPath } from "node:url";
|
|
|
|
const root = fileURLToPath(new URL("../..", import.meta.url));
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
turbopack: {
|
|
root
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|