9 lines
176 B
TypeScript
9 lines
176 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
//base: '/',
|
|
base: '/pkg/atmosphere/',
|
|
plugins: [react()]
|
|
})
|