Webpack Module Federated Microfrontend and ViteJS

I have an existing Microfrontend built using Webpack Module Federation. So basically, I have a Host app and 3 child applications (all of them currently built using ReactJS/Webpack)

Now, I want to introduce a new micro frontend app and it is going to be a React app (but I want to build this app in a modern way using ViteJS instead of the conventional way and avoid using react-scripts)
However, I want to avoid using the existing Host app and the other child apps (since they are already live in Production and I do not want to do introduce any regression for them)

My question is if it is possible to do that i.e. have a mix of both. Anything specific that I need to take care of ?