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