mirror of
https://github.com/goccy/go-yaml.git
synced 2025-11-04 15:21:06 +00:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
|
|
import { defineConfig } from 'vite'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
import svgr from 'vite-plugin-svgr'
|
||
|
|
|
||
|
|
// https://vite.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
base: '/go-yaml/',
|
||
|
|
plugins: [react(), svgr()],
|
||
|
|
})
|