interationObserver init on whole listing

This commit is contained in:
lootboxer 2025-06-30 01:01:26 +03:00
parent 935178a66d
commit e5478bb1c6
31 changed files with 4445 additions and 202 deletions

View file

@ -1,7 +1,13 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
},
},
})