• Operand
  • odyssey, u hear?

gram: page

> ./vite.config.ts

Lenses
(coming soon!)


import { defineConfig } from "vite"
import react from "@vitejs/plugin-react"
import wasm from "vite-plugin-wasm"

export default defineConfig({
  // customize this to your repo name for github pages deploy
  base: "/",

  build: { target: "esnext" },

  plugins: [wasm(), react()],

  worker: {
    format: "es",
    plugins: () => [wasm()],
  },
})