mirror of
https://github.com/woodchen-ink/Edgeone_CleanCache.git
synced 2025-07-17 21:41:57 +08:00
9 lines
153 B
TypeScript
9 lines
153 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: "export",
|
|
};
|
|
|
|
export default nextConfig;
|