feat: configure standalone output mode in next.js

This commit is contained in:
Mathis HERRIOT
2026-01-08 15:30:29 +01:00
parent 6e823743fc
commit 3c02bd6023

View File

@@ -5,6 +5,7 @@ const withMDX = createMDX();
/** @type {import('next').NextConfig} */
const config = {
reactStrictMode: true,
output: 'standalone',
};
export default withMDX(config);