From 46e8fc0fec3de136e6ecedf21fdcba492700eb96 Mon Sep 17 00:00:00 2001 From: John Wesley Date: Tue, 2 Jul 2024 16:54:44 -0400 Subject: [PATCH] FIX: remove baseURL from vite config --- .github/workflows/deploy.yml | 2 +- app.config.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6c164d2..6fad723 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,7 +35,7 @@ jobs: uses: pnpm/action-setup@v3 - name: Install dependencies run: pnpm install - - name: Build with Next.js + - name: Build with Solid.js run: pnpm build - name: Upload artifact uses: actions/upload-pages-artifact@v3 diff --git a/app.config.ts b/app.config.ts index be83aa7..a75738a 100644 --- a/app.config.ts +++ b/app.config.ts @@ -4,6 +4,5 @@ export default defineConfig({ ssr: false, server: { static: true, - baseURL: '/mbin-website/', }, });