Powerpoint_AI / next.config.ts
Reubencf's picture
fixing for docker huggingface
bfef3a0
raw
history blame contribute delete
339 Bytes
/*
* next.config.ts
* Purpose: Stores the Next.js build/runtime configuration for the app.
* Used by: Next.js build and dev server.
* Depends on: Next.js config schema and package transpilation needs.
*/
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
};
export default nextConfig;