import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; // https://vitejs.dev/config/ export default defineConfig({ plugins: [ react({ babel: { plugins: [["babel-plugin-react-compiler"]], }, }), ], // Served at the root of scribe.luxick.de, not from a GitHub Pages subpath. base: "/", });