9 lines
234 B
TypeScript
9 lines
234 B
TypeScript
|
|
import { defineConfig } from 'vite'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
import { crx } from '@crxjs/vite-plugin'
|
||
|
|
import manifest from './manifest.config'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react(), crx({ manifest })],
|
||
|
|
})
|