10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
import { defineConfig } from 'wxt';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
// See https://wxt.dev/api/config.html
|
|
export default defineConfig({
|
|
vite: () => ({
|
|
plugins: [react()],
|
|
}),
|
|
});
|