๐Ÿ“ฆ ionic-team / capacitor-os-inappbrowser

๐Ÿ“„ vite.config.ts ยท 14 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14import legacy from "@vitejs/plugin-legacy";
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [react(), legacy()],
  test: {
    globals: true,
    environment: "jsdom",
    setupFiles: "./src/setupTests.ts",
  },
});