Skip to content

Commit fbbda67

Browse files
committed
fix: change back to static, the server output wasn't necessary for the search .json files (the trailing slash is because it's being mistakenly applied to API routes)
1 parent 11a856a commit fbbda67

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
with:
2929
node-version: 22.13.0
3030
package-manager: pnpm@9.7.0
31-
path: ./client
3231
deploy:
3332
needs: build
3433
runs-on: ubuntu-latest

astro.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const linkIcon = readFileSync(linkIconSvgPath, 'utf-8');
3232

3333
// https://astro.build/config
3434
export default defineConfig({
35-
output: 'server',
35+
output: 'static',
3636
adapter: nodeAdapter({
3737
mode: 'standalone'
3838
}),

0 commit comments

Comments
 (0)