Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added User authentication component #62

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion nepalingo-web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<title>Nepalingo</title>

</head>
<body>
<div id="root"></div>
Expand Down
6 changes: 5 additions & 1 deletion nepalingo-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@
"preview": "vite preview"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@supabase/supabase-js": "^2.44.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
"react-dom": "^18.3.1",
"react-router-dom": "^6.24.1"
},
"devDependencies": {
"@types/node": "^20.14.9",
Expand Down
185 changes: 185 additions & 0 deletions nepalingo-web/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions nepalingo-web/postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<<<<<<< HEAD
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
=======
// Using cjs instead of this file because vite is still using postcss-load-config v4 which
// does not support esm with typescript
// https://github.com/postcss/postcss-load-config/issues/239 (fix added in v4)
Expand All @@ -7,4 +14,5 @@
export const plugins = {
tailwindcss: {},
autoprefixer: {},
>>>>>>> c6c93b34a5f2dd40d68e9b26d39868ae1c41f0cb
};
Loading
Loading