Skip to content

Commit e91e99c

Browse files
committed
update with aws amplify
1 parent fa425c2 commit e91e99c

6 files changed

Lines changed: 614 additions & 8 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# dependencies
44
/node_modules/*
55
/bower_components/*
6+
.astro/**
67

78
# testing
89
/coverage/*

astro.config.mjs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import mdx from "@astrojs/mdx";
2-
import node from "@astrojs/node";
32
import react from "@astrojs/react";
43
import tailwind from "@astrojs/tailwind";
4+
import awsAmplify from "astro-aws-amplify";
55
import { defineConfig } from "astro/config";
66

7+
78
// https://astro.build/config
89
export default defineConfig({
910
site: "https://recursivezero.com",
1011
prefetch: true,
11-
output: "static",
1212
devToolbar: {
1313
enabled: false
1414
},
@@ -25,7 +25,8 @@ export default defineConfig({
2525
nesting: true
2626
})
2727
],
28-
adapter: node({ mode: "standalone" }),
28+
adapter: awsAmplify(),
29+
output: "server",
2930
style: {
3031
global: true // Ensure global styles are applied
3132
},

domain.code-workspace

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,11 @@
186186
"statusBarItem.hoverBackground": "#040043",
187187
"statusBarItem.remoteBackground": "#010010",
188188
"statusBarItem.remoteForeground": "#e7e7e7",
189+
"tab.activeBorder": "#040043",
189190
"titleBar.activeBackground": "#010010",
190191
"titleBar.activeForeground": "#e7e7e7",
191192
"titleBar.inactiveBackground": "#01001099",
192-
"titleBar.inactiveForeground": "#e7e7e799",
193-
"tab.activeBorder": "#040043"
193+
"titleBar.inactiveForeground": "#e7e7e799"
194194
},
195195
}
196196
}

0 commit comments

Comments
 (0)