* fix * fixes * fixes * update docs * fixes * fixes * sandbox tokens * better logging
9 lines
205 B
TypeScript
9 lines
205 B
TypeScript
import type { NextConfig } from "next";
|
|
import path from "node:path";
|
|
|
|
const nextConfig: NextConfig = {
|
|
outputFileTracingRoot: path.resolve(import.meta.dirname, "../../"),
|
|
};
|
|
|
|
export default nextConfig;
|