Skip to content

Commit

Permalink
fix: build path
Browse files Browse the repository at this point in the history
  • Loading branch information
ThianHooi committed Jul 27, 2024
1 parent 81b3791 commit 1e9c416
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
uses: actions/upload-pages-artifact@v3
with:
# Upload dist folder
path: './build'
path: './build/client'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
7 changes: 4 additions & 3 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { vitePlugin as remix } from "@remix-run/dev";
import { defineConfig } from "vite";
import tsconfigPaths from "vite-tsconfig-paths";
import { vitePlugin as remix } from '@remix-run/dev';
import { defineConfig } from 'vite';
import tsconfigPaths from 'vite-tsconfig-paths';

export default defineConfig({
base: '/property-videos-summariser/',
plugins: [
remix({
basename: '/property-videos-summariser/',
future: {
v3_fetcherPersist: true,
v3_relativeSplatPath: true,
Expand Down

0 comments on commit 1e9c416

Please sign in to comment.