lab6 done

This commit is contained in:
2026-04-13 18:06:00 +10:00
parent ed282406d5
commit b441bfde8d
12 changed files with 502 additions and 57 deletions

View File

@@ -1,7 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import react, { reactCompilerPreset } from '@vitejs/plugin-react'
import babel from '@rolldown/plugin-babel'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [
react(),
babel({ presets: [reactCompilerPreset()] })
],
})