Skip to content

Commit cf52c50

Browse files
authored
Merge pull request #19 from abdonmorales/dev: Holiday Update Christmas '25!
Fall 2025 Major Refresh
2 parents 3cac65c + 47c6115 commit cf52c50

40 files changed

Lines changed: 5471 additions & 368 deletions

.astro/collections/work.schema.json

Lines changed: 0 additions & 56 deletions
This file was deleted.

.astro/content-assets.mjs

Lines changed: 0 additions & 1 deletion
This file was deleted.

.astro/content-modules.mjs

Lines changed: 0 additions & 1 deletion
This file was deleted.

.astro/content.d.ts

Lines changed: 0 additions & 209 deletions
This file was deleted.

.astro/data-store.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

.astro/settings.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.astro/types.d.ts

Lines changed: 0 additions & 2 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ node_modules/
33
.idea
44
package-lock.json
55
dist
6+
.astro/
67
*:Zone.Identifier

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "npm: build",
6+
"type": "shell",
7+
"command": "npm",
8+
"args": [
9+
"run",
10+
"build"
11+
],
12+
"problemMatcher": [
13+
"$tsc"
14+
]
15+
}
16+
]
17+
}

astro.config.mjs

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,39 @@
11
import { defineConfig } from 'astro/config';
2+
import react from '@astrojs/react';
3+
24
// https://astro.build/config
35
export default defineConfig({
46
output: 'static',
57
build: {
68
assets: 'assets',
7-
inlineStylesheets: 'auto'
9+
inlineStylesheets: 'auto',
10+
assetsPrefix: '/'
811
},
912
image: {
1013
service: {
1114
entrypoint: 'astro/assets/services/sharp'
12-
}
15+
},
16+
domains: ['abdonmorales.github.io']
17+
},
18+
prefetch: {
19+
prefetchAll: true,
20+
defaultStrategy: 'viewport'
1321
},
14-
compressHTML: true
22+
compressHTML: true,
23+
integrations: [react()],
24+
vite: {
25+
build: {
26+
cssCodeSplit: true,
27+
rollupOptions: {
28+
output: {
29+
manualChunks: {
30+
'react-vendor': ['react', 'react-dom']
31+
}
32+
}
33+
}
34+
},
35+
ssr: {
36+
noExternal: ['@astrojs/react']
37+
}
38+
}
1539
});

0 commit comments

Comments
 (0)