Files
Crawl_demo/frontend/next.config.js
2026-03-18 18:57:58 +08:00

9 lines
144 B
JavaScript

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