mirror of
https://codeberg.org/uzu/strudel
synced 2026-07-13 14:26:58 -04:00
11 lines
204 B
JavaScript
11 lines
204 B
JavaScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
build: {
|
|
outDir: '../out',
|
|
},
|
|
});
|