Skip to content

Commit 4ef6743

Browse files
authored
Merge pull request #16 from ivanrdgz03/dev
feat: Add Contact form
2 parents 99a9d54 + 61f9cad commit 4ef6743

11 files changed

Lines changed: 1291 additions & 654 deletions

File tree

.astro/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"_variables": {
3-
"lastUpdateCheck": 1772967993300
3+
"lastUpdateCheck": 1769602487552
44
}
55
}

astro.config.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ import astrowind from './vendor/integration';
1515

1616
import { readingTimeRemarkPlugin, responsiveTablesRehypePlugin, lazyImagesRehypePlugin } from './src/utils/frontmatter';
1717

18+
import node from '@astrojs/node';
19+
1820
const __dirname = path.dirname(fileURLToPath(import.meta.url));
1921

2022
const hasExternalScripts = false;
2123
const whenExternalScripts = (items: (() => AstroIntegration) | (() => AstroIntegration)[] = []) =>
2224
hasExternalScripts ? (Array.isArray(items) ? items.map((item) => item()) : [items()]) : [];
2325

2426
export default defineConfig({
25-
output: 'static',
27+
output: 'hybrid',
2628

2729
integrations: [
2830
tailwind({
@@ -87,4 +89,8 @@ export default defineConfig({
8789
},
8890
},
8991
},
90-
});
92+
93+
adapter: node({
94+
mode: 'standalone',
95+
}),
96+
});

package-lock.json

Lines changed: 536 additions & 637 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"fix:prettier": "prettier -w ."
2323
},
2424
"dependencies": {
25+
"@astrojs/node": "^8.3.4",
2526
"@astrojs/rss": "^4.0.8",
2627
"@astrojs/sitemap": "^3.2.0",
2728
"@astrolib/analytics": "^0.6.1",
@@ -32,7 +33,8 @@
3233
"astro-icon": "^1.1.1",
3334
"limax": "4.1.0",
3435
"lodash.merge": "^4.6.2",
35-
"unpic": "^3.18.0"
36+
"unpic": "^3.18.0",
37+
"zod": "^3.25.76"
3638
},
3739
"devDependencies": {
3840
"@astrojs/check": "^0.9.4",

0 commit comments

Comments
 (0)