Added background

Added About
This commit is contained in:
Rahaf
2026-01-08 21:12:26 +03:00
parent be4a941730
commit 330a0d1ff1
13 changed files with 1520 additions and 624 deletions

View File

@ -1,7 +1,19 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})
plugins: [react()],
css: {
postcss: './postcss.config.js',
},
build: {
rollupOptions: {
output: {
manualChunks: {
'react-vendor': ['react', 'react-dom'],
'animation-vendor': ['three', 'styled-components', 'framer-motion'],
}
}
}
}
})