Skip to content

Commit

Permalink
Merge pull request #33 from ScilifelabDataCentre/pre-dev
Browse files Browse the repository at this point in the history
Bugfixing new Vite deployment
  • Loading branch information
JanProgrammierung authored Mar 19, 2024
2 parents 4aef118 + baa7c7d commit e576e13
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 e576e13

Please sign in to comment.