diff --git a/apps/changelog_public/astro.config.mjs b/apps/changelog_public/astro.config.mjs index e94a8f8..2d49248 100644 --- a/apps/changelog_public/astro.config.mjs +++ b/apps/changelog_public/astro.config.mjs @@ -5,8 +5,15 @@ import react from '@astrojs/react' import tailwind from '@astrojs/tailwind' +import node from '@astrojs/node' + // https://astro.build/config export default defineConfig({ output: 'server', + outDir: '../../build/page', integrations: [react(), tailwind({ nesting: true })], + + adapter: node({ + mode: 'standalone', + }), }) diff --git a/apps/changelog_public/package.json b/apps/changelog_public/package.json index 95c452b..59c0772 100644 --- a/apps/changelog_public/package.json +++ b/apps/changelog_public/package.json @@ -11,6 +11,7 @@ }, "dependencies": { "@astrojs/check": "^0.9.4", + "@astrojs/node": "^8.3.4", "@astrojs/react": "^3.6.2", "@astrojs/tailwind": "^5.1.2", "@boring.tools/schema": "workspace:*", diff --git a/bun.lockb b/bun.lockb index c070796..acd5446 100755 Binary files a/bun.lockb and b/bun.lockb differ