Skip to content
Merged
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
Binary file removed .DS_Store
Binary file not shown.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DS_Store
node_modules
/.next/
/.sanity/
.env.local
11 changes: 11 additions & 0 deletions my-portfolio/.vscode/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"servers": {
"shadcn": {
"command": "npx",
"args": [
"shadcn@latest",
"mcp"
]
}
}
}
24 changes: 24 additions & 0 deletions my-portfolio/components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/app/globals.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"iconLibrary": "lucide",
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"registries": {
"@react-bits": "https://reactbits.dev/r/{name}.json"
}
}
14 changes: 13 additions & 1 deletion my-portfolio/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,19 @@ const nextConfig = {
protocol: 'https',
hostname: 'cdn.sanity.io',
port: '',
pathname: '/**', // This allows any image from this hostname
pathname: '/**',
},
{
protocol: 'https',
hostname: 'images.credly.com',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'cdn.credly.com',
port: '',
pathname: '/**',
},
],
},
Expand Down
Loading
Loading