mirror of
https://github.com/alexgo-io/alex-sdk-example.git
synced 2026-01-12 14:25:07 +08:00
9 lines
193 B
TypeScript
9 lines
193 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: '/alex-sdk-example/',
|
|
})
|