You can compress your files by adding the following to nuxt config. This way, the page will weigh a fraction of its original size compared to its raw html version. If the server doesn't support brotli, it should fall back to gzip.
nitro: {
compressPublicAssets: {
gzip: true, brotli: true
}
}