首次发布git

This commit is contained in:
2026-02-24 09:53:19 +08:00
commit dd97cf6a2c
71 changed files with 14875 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import type { NextConfig } from "next";
import packageJson from "./package.json";
const nextConfig: NextConfig = {
output: "standalone",
env: {
NEXT_PUBLIC_APP_VERSION: packageJson.version,
},
};
export default nextConfig;