diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..3da66fb8 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,50 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Next.js: dev", + "type": "node", + "request": "launch", + "runtimeExecutable": "pnpm", + "runtimeArgs": ["run", "dev"], + "console": "integratedTerminal" + }, + { + "name": "Next.js: build", + "type": "node", + "request": "launch", + "runtimeExecutable": "pnpm", + "runtimeArgs": ["run", "build"], + "console": "integratedTerminal" + }, + { + "name": "Next.js: start", + "type": "node", + "request": "launch", + "runtimeExecutable": "pnpm", + "runtimeArgs": ["run", "start"], + "console": "integratedTerminal", + "serverReadyAction": { + "pattern": "- Local:.+(https?://.+)", + "uriFormat": "%s", + "action": "openExternally" + } + }, + { + "name": "Next.js: lint", + "type": "node", + "request": "launch", + "runtimeExecutable": "pnpm", + "runtimeArgs": ["run", "lint"], + "console": "integratedTerminal" + }, + { + "name": "Next.js: lint:fix", + "type": "node", + "request": "launch", + "runtimeExecutable": "pnpm", + "runtimeArgs": ["run", "lint:fix"], + "console": "integratedTerminal" + } + ] +} diff --git a/app/favicon.ico b/app/favicon.ico deleted file mode 100644 index 718d6fea..00000000 Binary files a/app/favicon.ico and /dev/null differ diff --git a/package.json b/package.json index 37f25463..72f906e4 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "dev": "next dev", "build": "next build", "start": "next start", - "lint": "eslint" + "lint": "eslint", + "lint:fix": "eslint --fix" }, "dependencies": { "next": "16.2.7", diff --git a/src/app/favicon.ico b/src/app/favicon.ico new file mode 100644 index 00000000..b8c2e4ae Binary files /dev/null and b/src/app/favicon.ico differ diff --git a/app/globals.css b/src/app/globals.css similarity index 100% rename from app/globals.css rename to src/app/globals.css diff --git a/app/layout.tsx b/src/app/layout.tsx similarity index 100% rename from app/layout.tsx rename to src/app/layout.tsx diff --git a/app/page.tsx b/src/app/page.tsx similarity index 100% rename from app/page.tsx rename to src/app/page.tsx diff --git a/tsconfig.json b/tsconfig.json index 3a13f90a..b1c9b9e3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,6 +13,7 @@ "isolatedModules": true, "jsx": "react-jsx", "incremental": true, + "baseUrl": "src/", "plugins": [ { "name": "next"