1
0
Files
jecnarozvrh/viewer/next.config.ts
2026-02-12 17:45:47 +01:00

12 lines
192 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
reactCompiler: true,
basePath: '/viewer',
turbopack: {
root: __dirname,
},
};
export default nextConfig;