Best way to hide your Assets HTML5 target?

Best way to hide your Assets to HTML5 target?

I think this is a good general question for HTML5 projects in general. There are ways to embed assets as base64 data, though loading this way is slower, and breaks support for preloading. Another possibility (though slower) is to load assets as bytes, then to read part of the bytes which represents the real file

1 Like

Load assets as bytes sounds good, But how to implement this? (i am not a technical person)