mirror of
https://github.com/goccy/go-yaml.git
synced 2025-10-29 20:31:04 +00:00
9 lines
226 B
TypeScript
9 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()],
|
|
})
|