Files
pos-system/microservices/apps/tpos-mvp-next/next.config.mjs
2026-05-24 00:17:20 +07:00

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;