All checks were successful
Build and Push App / build (push) Successful in 13m38s
13 lines
240 B
TypeScript
13 lines
240 B
TypeScript
import type { NextConfig } from "next";
|
|
import path from "path";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: 'standalone',
|
|
turbopack: {
|
|
root: path.join(__dirname, ".."),
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|