mirror of
https://github.com/kccleoc/seedpgp-web.git
synced 2026-03-07 01:47:52 +08:00
12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: '/seedpgp-web-app/',
|
|
build: {
|
|
outDir: 'dist',
|
|
emptyOutDir: false,
|
|
}
|
|
})
|