From 90cc7d633d9f9270b47756fb7baa197e7d232557 Mon Sep 17 00:00:00 2001 From: da-in Date: Fri, 22 Dec 2023 15:06:34 +0900 Subject: [PATCH] fix path --- .github/workflows/main.yml | 2 +- vite.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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', })