diff --git a/ui/.gitignore b/ui/.gitignore index fd3dbb571..e7e0febfe 100644 --- a/ui/.gitignore +++ b/ui/.gitignore @@ -34,3 +34,6 @@ yarn-error.log* # typescript *.tsbuildinfo next-env.d.ts + +# idea +.idea \ No newline at end of file diff --git a/ui/src/app/api/hello/route.ts b/ui/src/app/api/hello/route.ts deleted file mode 100644 index c351c0497..000000000 --- a/ui/src/app/api/hello/route.ts +++ /dev/null @@ -1,5 +0,0 @@ -export async function GET() { - await new Promise((resolve) => setTimeout(resolve, 1000)); - - return Response.json({ message: 'Hello World!' }); -}