Skip to content

Commit d63077e

Browse files
committed
ci: fix base url + replace npm by pnpm in action
1 parent 65f0713 commit d63077e

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ jobs:
7272
with:
7373
node-version: '22'
7474
# Pick your own package manager and build script
75-
- run: npm install
75+
- run: pnpm install --frozen-lockfile
7676
- name: Update stats
77-
run: npm run update-stats
78-
- run: npx nuxt generate --preset github_pages
77+
run: pnpm run update-stats
78+
- run: pnpm nuxt generate --preset github_pages
7979
- name: Upload artifact
8080
uses: actions/upload-pages-artifact@v4
8181
with:

nuxt.config.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,13 @@ export default defineNuxtConfig({
6464
},
6565
},
6666
app: {
67-
baseURL: '/',
67+
baseURL: '/litestar.dev-v2/',
6868
pageTransition: false,
6969
layoutTransition: false,
7070
},
7171
css: ['~/assets/css/main.css'],
7272
experimental: {
7373
extractAsyncDataHandlers: true,
74-
// payloadExtraction: true,
75-
// renderJsonPayloads: true,
7674
},
7775
content: {
7876
build: {

0 commit comments

Comments
 (0)