jdrouet/mrml

View on GitHub
examples/demo/vite.config.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { defineConfig } from 'vite'
import wasm from "vite-plugin-wasm";
import topLevelAwait from "vite-plugin-top-level-await";
import react from '@vitejs/plugin-react'

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [react(), wasm(), topLevelAwait()],
})