mirror of
https://github.com/tuna2134/cecilia.git
synced 2026-02-06 14:42:40 +00:00
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
};
|
|
|
|
if (process.env.OUTPUT === "standalone") {
|
|
nextConfig.output = "standalone";
|
|
}
|
|
|
|
export default nextConfig;
|