week-5-module-2 / vite.config.ts
iurbinah's picture
Create vite.config.ts
c8c325a verified
raw
history blame contribute delete
231 Bytes
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react-swc';
export default defineConfig({
plugins: [react()],
// make all asset paths relative so they work under /spaces/<user>/<name>/
base: './',
});