Skip to content

Commit

Permalink
Merge pull request #1 from hao-mo/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
qqharry21 committed Mar 5, 2024
2 parents 966d614 + bd96c60 commit f3329c0
Show file tree
Hide file tree
Showing 110 changed files with 7,288 additions and 627 deletions.
12 changes: 12 additions & 0 deletions .env
@@ -0,0 +1,12 @@
NEXT_PUBLIC_SITE_URL=

ACCESS_TOKEN_KEY='user_access_token'
REFRESH_TOKEN_KEY='user_refresh_token'

NEXT_PUBLIC_MEASUREMENT_ID=
NEXT_PUBLIC_GOOGLE_TAG_MANAGER_ID=
SENTRY_DSN=
SENTRY_AUTH_TOKEN=

NEXT_PUBLIC_SUPABASE_URL=https://odwqofjfevmgoakhmaav.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Im9kd3FvZmpmZXZtZ29ha2htYWF2Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3MDk1NDY3NDYsImV4cCI6MjAyNTEyMjc0Nn0.m0sa2EhmHo0OKBwHJOhuO-YkHA-vtbyH-ah6eBppVpc
12 changes: 12 additions & 0 deletions .env.example
@@ -0,0 +1,12 @@
NEXT_PUBLIC_SITE_URL=

ACCESS_TOKEN_KEY=
REFRESH_TOKEN_KEY=

NEXT_PUBLIC_MEASUREMENT_ID=
NEXT_PUBLIC_GOOGLE_TAG_MANAGER_ID=
SENTRY_DSN=
SENTRY_AUTH_TOKEN=

NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
2 changes: 1 addition & 1 deletion .eslintrc.json
Expand Up @@ -25,7 +25,7 @@
"warn",
{
"groups": [
["^@?\\w", "^react"],
["^@?\\w", "^react\\w", "^next@?\\w"],
// Node.js builtins and third-party packages
["^\\u0000"],
// Your internal path aliases
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Expand Up @@ -11,5 +11,6 @@
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll": "explicit"
}
},
"cSpell.words": ["Tiptap"]
}
2 changes: 1 addition & 1 deletion components.json
Expand Up @@ -12,6 +12,6 @@
"aliases": {
"components": "@/components",
"utils": "@/utils",
"ui": "@/components"
"ui": "@/components/ui"
}
}
11 changes: 10 additions & 1 deletion next.config.mjs
@@ -1,4 +1,13 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
},
],
},
};

export default nextConfig;

0 comments on commit f3329c0

Please sign in to comment.