UNPKG

@refastdev/create-refast-app

Version:
18 lines (16 loc) 333 B
import { refastPlugin } from '@refastdev/refast-dev'; import path from 'path'; import { defineConfig } from 'vite'; export default defineConfig({ appType: 'spa', resolve: { alias: { '@': path.join(__dirname, 'src'), }, }, plugins: [ refastPlugin({ appType: 'react', }), ], });