Files
ERP-core/Frontend/erp-system/next.config.ts
T

11 lines
182 B
TypeScript

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