diff --git a/frontend/app/favicon.ico b/frontend/src/app/favicon.ico similarity index 100% rename from frontend/app/favicon.ico rename to frontend/src/app/favicon.ico diff --git a/frontend/app/globals.css b/frontend/src/app/globals.css similarity index 100% rename from frontend/app/globals.css rename to frontend/src/app/globals.css diff --git a/frontend/app/layout.tsx b/frontend/src/app/layout.tsx similarity index 100% rename from frontend/app/layout.tsx rename to frontend/src/app/layout.tsx diff --git a/frontend/app/page.tsx b/frontend/src/app/page.tsx similarity index 99% rename from frontend/app/page.tsx rename to frontend/src/app/page.tsx index c35ae42..8cd606b 100644 --- a/frontend/app/page.tsx +++ b/frontend/src/app/page.tsx @@ -17,7 +17,7 @@ export default function Home() {
  • Get started by editing{" "} - app/page.tsx + src/app/page.tsx .
  • diff --git a/frontend/tailwind.config.ts b/frontend/tailwind.config.ts index fa955cb..56c4c1b 100644 --- a/frontend/tailwind.config.ts +++ b/frontend/tailwind.config.ts @@ -2,9 +2,9 @@ import type {Config} from "tailwindcss"; export default { content: [ - "./pages/**/*.{js,ts,jsx,tsx,mdx}", - "./components/**/*.{js,ts,jsx,tsx,mdx}", - "./app/**/*.{js,ts,jsx,tsx,mdx}", + "./src/pages/**/*.{js,ts,jsx,tsx,mdx}", + "./src/components/**/*.{js,ts,jsx,tsx,mdx}", + "./src/app/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { extend: { diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 01b4ddb..d2bba22 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -24,7 +24,7 @@ ], "paths": { "@/*": [ - "./*" + "./src/*" ] } },