White Screen flashes on app load

have you tried making it display none !important?

#loadingSpinner {
  display: none !important;
}

And if you need the body to also be transparent then you might need

body {
   background-color: transparent;
}