mirror of
https://github.com/zhigang1992/mobx-fast-refresh.git
synced 2026-01-12 08:14:14 +08:00
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react-swc'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react({
|
|
jsxImportSource: "use-mobx-observable"
|
|
})],
|
|
})
|