Files
Filamenteka/next.config.js
DaX 62608ebb43 Fix Next.js standalone build for Amplify WEB_COMPUTE
- Set output to standalone in next.config.js
- Update build artifacts to use .next/standalone
- Copy static files to standalone directory
- Remove invalid serverActions config
2025-06-19 00:45:44 +02:00

7 lines
141 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
}
module.exports = nextConfig