We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc5d814 commit 6336d16Copy full SHA for 6336d16
.github/workflows/deploy.yml
@@ -34,11 +34,11 @@ jobs:
34
uses: actions/setup-node@v4
35
with:
36
node-version: lts/*
37
- cache: 'npm'
+ cache: 'pnpm'
38
- name: Install dependencies
39
- run: npm ci
+ run: pnpm install
40
- name: Build
41
- run: npm run build
+ run: pnpm run build
42
- name: Setup Pages
43
uses: actions/configure-pages@v5
44
- name: Upload artifact
vite.config.ts
@@ -5,7 +5,7 @@ import path from "node:path";
5
6
// https://vite.dev/config/
7
export default defineConfig({
8
- base: "/",
+ base: "/parameters-playground/",
9
server: {
10
// For dev purposes when using Coder Connect, and ngrok
11
allowedHosts: [".coder", ".ngrok"],
0 commit comments