mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-06 07:28:53 -05:00
17 lines
358 B
JavaScript
17 lines
358 B
JavaScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import svgr from 'vite-plugin-svgr';
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
svgr({
|
|
// Options for svgr
|
|
svgrOptions: {
|
|
exportType: 'default',
|
|
},
|
|
}),
|
|
],
|
|
});
|