mirror of
https://gitlab.massbug.com/massbug/judge4c.git
synced 2025-07-04 13:14:15 +00:00
8 lines
129 B
TypeScript
8 lines
129 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|