Files
VTHacks13/web/next.config.ts
2025-09-27 01:53:22 -04:00

11 lines
168 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
turbopack: {
root: "./",
}
};
export default nextConfig;