jdrouet/mrml

View on GitHub
packages/mrml-wasm/examples/browser/vite.config.ts

Summary

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

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