blob: 29c6bc6e5723efacf884852a8f25f565fc1898d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import { crx } from "@crxjs/vite-plugin";
import manifest from "./manifest.json";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), crx({ manifest })],
});
|