12 lines
210 B
TypeScript
12 lines
210 B
TypeScript
import path from 'node:path'
|
|
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
turbopack: {
|
|
root: path.join(__dirname),
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|