uchill/excalidraw-server/next.config.js

12 lines
278 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
// Минимальная конфигурация для Excalidraw
reactStrictMode: false,
// Отключаем SSR полностью
output: 'standalone',
};
module.exports = nextConfig;