forked from opentiny/tiny-vue
11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
|
import { defineConfig } from 'vite'
|
||
|
import react from '@vitejs/plugin-react'
|
||
|
import svgr from "vite-plugin-svgr";
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
react({ include: /\.(mdx|js|jsx|ts|tsx)$/ }), svgr()
|
||
|
],
|
||
|
})
|