chore: use only rolldown for building (#7101)

This commit is contained in:
SamTV12345 2025-08-26 22:22:10 +02:00 committed by GitHub
parent a5413d7272
commit f0e7942a55
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 460 additions and 720 deletions

View file

@ -20,7 +20,6 @@ export const ShoutPage = ()=>{
setShouts([...shouts, shout])
})
pluginSocket.on('results:stats', (statData) => {
console.log('Shoutdata', statData);
setTotalUsers(statData.totalUsers);
})
}

View file

@ -1,6 +1,7 @@
import {useStore} from "../store/store.ts";
import * as Dialog from '@radix-ui/react-dialog';
import ReactComponent from './brand.svg?react';
import brand from './brand.svg'
export const LoadingScreen = ()=>{
const showLoading = useStore(state => state.showLoading)
@ -10,7 +11,7 @@ export const LoadingScreen = ()=>{
<div className="flex flex-col items-center">
<div className="animate-spin w-16 h-16 border-t-2 border-b-2 border-[--fg-color] rounded-full"></div>
<div className="mt-4 text-[--fg-color]">
<ReactComponent/>
<img src={brand}/>
</div>
</div>
</Dialog.Content>