Skip to content

Commit a1daadc

Browse files
Merge pull request #1 from a1exalexander/dev
Dev
2 parents 54178ab + d53d214 commit a1daadc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+11203
-525
lines changed

.claude/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"enabledPlugins": {
3+
"frontend-design@claude-plugins-official": true
4+
}
5+
}

.claude/settings.local.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22
"permissions": {
33
"allow": [
44
"Bash(ls:*)",
5-
"Bash(npm run build:*)"
5+
"Bash(npm run build:*)",
6+
"mcp__context7__resolve-library-id",
7+
"mcp__context7__query-docs",
8+
"Bash(npm install:*)",
9+
"Bash(npm run lint:*)",
10+
"Skill(jira-skill)",
11+
"Bash(python3:*)"
612
]
713
}
814
}

.github/workflows/nextjs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ name: Deploy Next.js site to Pages
77
env:
88
# Setting an environment variable with the value of a configuration variable
99
NEXT_PUBLIC_POSTHOG_KEY: ${{ vars.NEXT_PUBLIC_POSTHOG_KEY }}
10-
NEXT_PUBLIC_POSTHOG_HOST: ${{ vars.NEXT_PUBLIC_POSTHOG_HOST }}
10+
NEXT_PUBLIC_POSTHOG_HOST: ${{ secrets.NEXT_PUBLIC_POSTHOG_HOST }}
11+
UPSTASH_REDIS_REST_URL: ${{ vars.UPSTASH_REDIS_REST_URL }}
12+
UPSTASH_REDIS_REST_TOKEN: ${{ secrets.UPSTASH_REDIS_REST_TOKEN }}
1113

1214
on:
1315
# Runs on pushes targeting the default branch

next.config.mjs

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
11
/** @type {import('next').NextConfig} */
2-
const nextConfig = {};
2+
const nextConfig = {
3+
images: {
4+
remotePatterns: [
5+
{
6+
protocol: "https",
7+
hostname: "nextjs.org",
8+
},
9+
{
10+
protocol: "https",
11+
hostname: "react.dev",
12+
},
13+
{
14+
protocol: "https",
15+
hostname: "upstash.com",
16+
},
17+
{
18+
protocol: "https",
19+
hostname: "posthog.com",
20+
},
21+
],
22+
},
23+
};
324

425
export default nextConfig;

0 commit comments

Comments
 (0)