From 0621175dd7c1ee42cd07302501aa0d46fe79bc55 Mon Sep 17 00:00:00 2001 From: Tetsuro Sakamoto Date: Mon, 10 Jun 2024 03:14:35 +0900 Subject: [PATCH] Fix base URL --- .github/workflows/gh-pages.yml | 4 ++-- vite.config.ts | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index bb763d7..470ba7b 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -1,5 +1,5 @@ -# Sample workflow for building and deploying a Jekyll site to GitHub Pages -name: Deploy Jekyll with GitHub Pages dependencies preinstalled +# Sample workflow for building and deploying a node site to GitHub Pages +name: Deploy GitHub Pages on: # Runs on pushes targeting the default branch diff --git a/vite.config.ts b/vite.config.ts index 5c45e1d..f0ff8b0 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -12,5 +12,6 @@ export default defineConfig({ alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } - } + }, + base: 'https://monman53.github.io/simple-camera-simulator/' })