flowstate/next.config.ts
Chneemann a60851ac07
All checks were successful
Deploy Flowstate to VPS / deploy (push) Successful in 1m27s
refactor(lib): consolidate services, types, utils, and actions into lib folder and update import paths
2026-08-23 16:44:18 +02:00

20 lines
442 B
TypeScript

/**
* @file next.config.ts
* @description Next.js framework configuration file defining standalone output builds, image optimizations, and Turbopack root settings.
*/
import path from "path";
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone" as const,
trailingSlash: false,
images: {
unoptimized: true,
},
turbopack: {
root: path.resolve(__dirname),
},
};
export default nextConfig;