From a365eddee9adfb47ed7ca2297b502d85d0241165 Mon Sep 17 00:00:00 2001 From: ludelanier Date: Wed, 8 May 2024 04:36:52 +0200 Subject: [PATCH] images --- nginx.conf | 2 +- vite.config.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 3c50bf1..b71b852 100644 --- a/nginx.conf +++ b/nginx.conf @@ -3,7 +3,7 @@ worker_processes 4; events { worker_connections 1024; } http { - include mime.types; + include /etc/nginx/mime.types; server { listen 8080; root /usr/share/nginx/html/nested-app; diff --git a/vite.config.js b/vite.config.js index 89f7af6..a49d55f 100644 --- a/vite.config.js +++ b/vite.config.js @@ -6,5 +6,4 @@ import { fileURLToPath, URL } from 'node:url' // https://vitejs.dev/config/ export default defineConfig({ plugins: [vue(), svgLoader()], - base: 'https://codefirst.iut.uca.fr/', })