Initial Mebbling hub implementation

This commit is contained in:
2026-07-19 00:29:30 +08:00
commit e6ebdb0576
41 changed files with 2571 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import path from "node:path";
/** @type {import('next').NextConfig} */
const nextConfig = {
outputFileTracingRoot: process.cwd(),
webpack(config) {
config.resolve.alias["@"] = path.resolve(process.cwd());
return config;
},
};
export default nextConfig;