Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pr #77

Merged
merged 12 commits into from
Aug 25, 2024
15 changes: 8 additions & 7 deletions research/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
import { defineConfig } from 'astro/config'
import tailwind from '@astrojs/tailwind'
import node from '@astrojs/node'

import svelte from '@astrojs/svelte'

import vercel from '@astrojs/vercel/serverless'

// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), svelte()],
output: 'server',
darkMode: 'selector',
adapter: node({
mode: 'standalone',
}),
adapter: vercel(),
devToolbar: {
enabled: false
}
enabled: false,
},
adapter: vercel({
webAnalytics: { enabled: true },
}),
})
2 changes: 2 additions & 0 deletions research/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
"@astrojs/node": "^8.3.3",
"@astrojs/svelte": "^5.7.0",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/vercel": "^7.8.0",
"@vercel/analytics": "^1.3.1",
"astro": "^4.14.2",
"astro-social-share": "^2.0.2",
"nanostores": "^0.11.2",
Expand Down
Loading