Deployed to Netlify

This commit is contained in:
theamazing0 2025-08-06 16:49:10 -04:00
parent 5819416a7e
commit 25cb393f3f
7 changed files with 1846 additions and 167 deletions

3
.gitignore vendored
View file

@ -25,3 +25,6 @@ pnpm-debug.log*
# personal
personal/
# Local Netlify folder
.netlify

View file

@ -5,7 +5,7 @@ import icon from "astro-icon";
// https://astro.build/config
export default defineConfig({
site: "https://portfolio.samvidk.workers.dev",
site: "https://samvid.dev",
integrations: [
icon({
include: {

1984
bun.lock

File diff suppressed because it is too large Load diff

View file

@ -8,7 +8,7 @@
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"deploy": "astro build && wrangler deploy"
"deploy": "netlify deploy"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
@ -23,8 +23,8 @@
"typescript": "^5.4.5"
},
"devDependencies": {
"netlify-cli": "^23.1.1",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"wrangler": "^4.26.0"
"prettier-plugin-astro": "^0.14.1"
}
}

View file

@ -1,2 +0,0 @@
_worker.js
_routes.json

4
src/env.d.ts vendored
View file

@ -1,6 +1,2 @@
/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />
interface Window {
Alpine: import("alpinejs").Alpine;
}

View file

@ -1,10 +0,0 @@
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "portfolio",
// Update to today's date
"compatibility_date": "2025-07-22",
"assets": {
"directory": "./dist",
"not_found_handling": "404-page", // If you have a custom `src/pages/404.astro` page
},
}