feat: Change autoplay icons and improve switch on/off functionality

This commit is contained in:
Yiannis Christodoulou
2025-09-25 10:12:27 +03:00
parent f73c3dde89
commit ed07da1783
11 changed files with 5700 additions and 4235 deletions
+13 -4
View File
@@ -1,7 +1,16 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
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()],
})
plugins: [
react(),
svgr({
// Options for svgr
svgrOptions: {
exportType: 'default',
},
}),
],
});