Files
Open-Assistant/website/next.config.js
T

11 lines
196 B
JavaScript

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