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

Need feedback on user authentication #54

Merged
merged 9 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from 6 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>
christikaes marked this conversation as resolved.
Show resolved Hide resolved

</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",
christikaes marked this conversation as resolved.
Show resolved Hide resolved
"@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.

15 changes: 15 additions & 0 deletions nepalingo-web/postcss.config.js
christikaes marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
<<<<<<< HEAD
<<<<<<< HEAD
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
=======
=======

>>>>>>> e5199f6b80088fe392b668a0b00cc22b14bc5ba9
// 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 +18,8 @@
export const plugins = {
tailwindcss: {},
autoprefixer: {},
<<<<<<< HEAD
christikaes marked this conversation as resolved.
Show resolved Hide resolved
>>>>>>> c6c93b34a5f2dd40d68e9b26d39868ae1c41f0cb
=======
>>>>>>> e5199f6b80088fe392b668a0b00cc22b14bc5ba9
};
Loading
Loading