Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
wip: works locally in emulators, not deployed
Browse files Browse the repository at this point in the history
  • Loading branch information
bradfordbarr committed Oct 31, 2024
1 parent f473a5f commit 525ca42
Show file tree
Hide file tree
Showing 7 changed files with 4,962 additions and 8,442 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ pnpm-debug.log*
# macOS-specific files
.DS_Store
.idea
.firebase
*.log
*.cache
7 changes: 3 additions & 4 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,15 @@ import decapCmsOauth from "astro-decap-cms-oauth"

// https://astro.build/config
export default defineConfig({
site: "https://example.com",
output: "hybrid",
output: "server",
integrations: [
decapCmsOauth({ decapCMSVersion: "3.3.3" }),
decapCmsOauth({ decapCMSVersion: "3.3.3", adminDisabled: false }),
mdx(),
sitemap(),
tailwind(),
react(),
],
adapter: node({
mode: "standalone",
mode: "@astrojs/node",
}),
})
15 changes: 4 additions & 11 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
{
"hosting": {
"source": ".",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"frameworksBackend": {
"region": "us-east1"
}
},
"emulators": {
"hosting": {
Expand Down
Loading

0 comments on commit 525ca42

Please sign in to comment.