esolang/next.config.js
2025-01-16 14:36:06 -08:00

9 lines
163 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
output: "standalone",
reactStrictMode: true,
experimental: {
outputStandalone: true,
},
};