chss/vite.config.ts
Ashhhleyyy 9f71bcfbfd
All checks were successful
continuous-integration/drone/push Build is passing
fix: Allow serving at any subpath
2022-07-05 10:57:13 +01:00

8 lines
182 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
base: '',
});