Files
afrov2/admin/next.config.ts
streaper2 a814c7b577
All checks were successful
Build and Push App / build (push) Successful in 13m38s
ajout de la gestion des favoris
2026-04-27 21:44:48 +02:00

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;