1
0
Files
jecnarozvrh/viewer/next.config.ts
jzitnik-dev df9fa7c605
All checks were successful
Remote Deploy / deploy (push) Successful in 1m5s
chore: Some minor website modification changes
2026-02-12 20:18:37 +01:00

13 lines
303 B
TypeScript

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