fix deployment for example (#701)

This commit is contained in:
Chris Tate
2026-03-09 17:41:04 -05:00
committed by GitHub
parent f6c83e410b
commit c2794232ee
3 changed files with 2 additions and 10 deletions
+1
View File
@@ -3,3 +3,4 @@ node_modules/
.env
.env.local
.env*.local
next-env.d.ts
-6
View File
@@ -1,6 +0,0 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/types/routes.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
+1 -4
View File
@@ -1,8 +1,5 @@
import type { NextConfig } from "next";
import path from "node:path";
const nextConfig: NextConfig = {
outputFileTracingRoot: path.resolve(import.meta.dirname, "../../"),
};
const nextConfig: NextConfig = {};
export default nextConfig;