1
0
Files
jecnarozvrh/viewer/next.config.ts
jzitnik-dev 793cce4ae7
All checks were successful
Remote Deploy / deploy (push) Successful in 20s
chore: Idk
2026-02-12 18:17:01 +01:00

13 lines
237 B
TypeScript

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