mirror of
https://github.com/velocitatem/cvfs.git
synced 2026-05-31 16:53:38 +00:00
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
import type { NextConfig } from "next";
|
|
import path from "node:path";
|
|
|
|
const nextConfig: NextConfig = {
|
|
outputFileTracingRoot: path.join(process.cwd(), "../.."),
|
|
};
|
|
|
|
export default nextConfig;
|