- 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
7 lines
141 B
JavaScript
7 lines
141 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: 'standalone',
|
|
}
|
|
|
|
module.exports = nextConfig |