mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 16:36:22 +02:00
12 lines
306 B
TypeScript
12 lines
306 B
TypeScript
import type { NextConfig } from "next";
|
|
import path from "path";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "export",
|
|
turbopack: {
|
|
// Keep Turbopack scoped to this app instead of inferring a parent workspace root.
|
|
root: __dirname || path.join(process.cwd()),
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|