import { defineConfig } from "vite"; import react from "@vitejs/plugin-react-swc"; // https://vite.dev/config/ export default defineConfig({ plugins: [react()], optimizeDeps: { exclude: ["@jsquash/avif"], // gives us WASM problems if we include, however now we need to manually preload }, worker: { format: "es", }, });