Skip to content

Commit 6336d16

Browse files
committed
fix: use pnpm for deployment
1 parent fc5d814 commit 6336d16

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ jobs:
3434
uses: actions/setup-node@v4
3535
with:
3636
node-version: lts/*
37-
cache: 'npm'
37+
cache: 'pnpm'
3838
- name: Install dependencies
39-
run: npm ci
39+
run: pnpm install
4040
- name: Build
41-
run: npm run build
41+
run: pnpm run build
4242
- name: Setup Pages
4343
uses: actions/configure-pages@v5
4444
- name: Upload artifact

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import path from "node:path";
55

66
// https://vite.dev/config/
77
export default defineConfig({
8-
base: "/",
8+
base: "/parameters-playground/",
99
server: {
1010
// For dev purposes when using Coder Connect, and ngrok
1111
allowedHosts: [".coder", ".ngrok"],

0 commit comments

Comments
 (0)