From e499e5c9a63907ee0e71f00b21915fec2a765041 Mon Sep 17 00:00:00 2001 From: Arhan Chaudhary Date: Tue, 20 Aug 2024 15:59:27 -0400 Subject: [PATCH] custom domain config --- .github/workflows/deploy.yml | 2 -- svelte.config.js | 3 --- 2 files changed, 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 826b45a..db9d440 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -21,8 +21,6 @@ jobs: run: npm install - name: build - env: - BASE_PATH: '/${{ github.event.repository.name }}' run: | npm run build diff --git a/svelte.config.js b/svelte.config.js index cec1fc0..a6d530a 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -6,9 +6,6 @@ const config = { preprocess: vitePreprocess(), kit: { adapter: adapter(), - paths: { - base: process.argv.includes('dev') ? '' : process.env.BASE_PATH - } } };