mirror of
https://github.com/Qortal/q-trade.git
synced 2025-06-14 02:11:21 +00:00
12 lines
187 B
TypeScript
12 lines
187 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
react()
|
|
],
|
|
|
|
base: ""
|
|
})
|