From 2e2de8ab7d107bdc4e14b9775e790e393d739c61 Mon Sep 17 00:00:00 2001 From: NicolasMerget Date: Wed, 29 Nov 2023 16:13:58 +0100 Subject: [PATCH] fix: issue with missing logo --- showcases/react-showcase/vite.config.ts | 2 +- showcases/vue-showcase/vite.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/showcases/react-showcase/vite.config.ts b/showcases/react-showcase/vite.config.ts index 7a926a2f14f5..9d99e0cc6452 100644 --- a/showcases/react-showcase/vite.config.ts +++ b/showcases/react-showcase/vite.config.ts @@ -2,7 +2,7 @@ import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; // https://vitejs.dev/config/ export default defineConfig({ - base: `/react-showcase`, + base: `/react-showcase/`, plugins: [react()], build: { outDir: '../../build-showcases/react-showcase', diff --git a/showcases/vue-showcase/vite.config.ts b/showcases/vue-showcase/vite.config.ts index 91a6041c3794..1c59171b82bd 100644 --- a/showcases/vue-showcase/vite.config.ts +++ b/showcases/vue-showcase/vite.config.ts @@ -3,7 +3,7 @@ import vue from '@vitejs/plugin-vue'; // https://vitejs.dev/config/ export default defineConfig({ - base: `/vue-showcase`, + base: `/vue-showcase/`, plugins: [vue()], build: { outDir: '../../build-showcases/vue-showcase',