mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 07:16:34 +00:00
8 lines
128 B
TypeScript
8 lines
128 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone"
|
|
};
|
|
|
|
export default nextConfig;
|