mirror of
https://codeberg.org/theamazing0/portfolio.git
synced 2025-10-30 02:12:19 -04:00
Deployed to Netlify
This commit is contained in:
parent
5819416a7e
commit
25cb393f3f
7 changed files with 1846 additions and 167 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -25,3 +25,6 @@ pnpm-debug.log*
|
|||
|
||||
# personal
|
||||
personal/
|
||||
|
||||
# Local Netlify folder
|
||||
.netlify
|
||||
|
|
|
|||
|
|
@ -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: {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,2 +0,0 @@
|
|||
_worker.js
|
||||
_routes.json
|
||||
4
src/env.d.ts
vendored
4
src/env.d.ts
vendored
|
|
@ -1,6 +1,2 @@
|
|||
/// <reference path="../.astro/types.d.ts" />
|
||||
/// <reference types="astro/client" />
|
||||
|
||||
interface Window {
|
||||
Alpine: import("alpinejs").Alpine;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue