Skip to content

Commit 6418396

Browse files
committed
feat: added authentication routes
1 parent bee4461 commit 6418396

File tree

15 files changed

+2395
-3
lines changed

15 files changed

+2395
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ dist
1212
dist-ssr
1313
*.local
1414

15+
.env
16+
1517
# Editor directories and files
1618
.vscode/*
1719
!.vscode/extensions.json

frontend/src/components/TechStack.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Code2, Server, Database, Palette } from "lucide-react";
2-
import { Card } from "./ui/card";
2+
import { Card } from "./ui/card.js";
33

44
const techCategories = [
55
{

frontend/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
3-
"module": "ESNext", // or "ES6"
4-
"moduleResolution": "Node",
3+
"module": "Node16", // or "ES6"
4+
"moduleResolution": "node16",
55
"jsx": "react-jsx", // for React 17+
66
"esModuleInterop": true,
77
"allowSyntheticDefaultImports": true

0 commit comments

Comments
 (0)