diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index efffc09..f984347 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -51,7 +51,7 @@ jobs: # Build - name: Build - run: yarn run build && cp dist/index.html dist/404.html + run: pnpm run build && cp dist/index.html dist/404.html # Deploy - name: Deploy diff --git a/vite.config.ts b/vite.config.ts index 4981356..37a4aa9 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -4,5 +4,5 @@ import vue from '@vitejs/plugin-vue' // https://vitejs.dev/config/ export default defineConfig({ plugins: [vue()], - base: '/today-popup' + base: '/today-popup', })