Initial Green_Datura site

This commit is contained in:
2026-05-31 22:12:04 +08:00
commit 43a0f33186
19 changed files with 3222 additions and 0 deletions

13
next.config.mjs Normal file
View File

@@ -0,0 +1,13 @@
import path from "node:path";
import { fileURLToPath } from "node:url";
const projectRoot = path.dirname(fileURLToPath(import.meta.url));
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
trailingSlash: true,
outputFileTracingRoot: projectRoot
};
export default nextConfig;