Skip to content

Commit

Permalink
Config vite for GH Pages deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
nikkehtine committed Oct 25, 2023
1 parent db16461 commit 309877f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";

// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
})
plugins: [react()],
base: "/results-summary-component/",
});

0 comments on commit 309877f

Please sign in to comment.