Files
FastGPT/next.config.js
2023-03-10 02:57:13 +08:00

13 lines
248 B
JavaScript

/** @type {import('next').NextConfig} */
const path = require('path');
const isDev = process.env.NODE_ENV === 'development';
const nextConfig = {
output: 'standalone',
reactStrictMode: false,
compress: true
};
module.exports = nextConfig;