Skip to content

Commit

Permalink
Something went wrong with the kubernetes deployment after switching t…
Browse files Browse the repository at this point in the history
…o Vite. Tried some solutions and seems to be working on a local k8s cluster currently. Trying to push again
  • Loading branch information
SevLG committed Mar 19, 2024
1 parent bc9a3c9 commit baa7c7d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pmp-frontend-app/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";

// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
})
assetsInclude: [
"**/*.JPG",
"**/*.PNG"
],
base: "./",
});

0 comments on commit baa7c7d

Please sign in to comment.