jw
05/04/2021, 11:43 AMolonho
05/04/2021, 11:46 AMshikasd
05/04/2021, 2:23 PMjw
05/04/2021, 2:54 PMshikasd
05/04/2021, 4:12 PMlouiscad
05/13/2021, 12:21 PMMrPowerGamerBR
05/15/2021, 8:55 PMpabl0rg
07/05/2021, 12:45 AMlouiscad
07/05/2021, 7:51 AMrenderComposable(…) { … }
call:
console.log(document.documentElement!!.outerHTML)
or right in the browser console with plain JS:
console.log(document.documentElement.outerHTML);
These calls log the current DOM, which is a snapshot of your rendered app.pabl0rg
07/05/2021, 7:54 AMlouiscad
07/05/2021, 7:56 AMdocument.documentElement!!.outerHTML
locally or in CI to generate a static webpage that you can store, deploy to a CDN like Firebase hosting or whatever, and I think you can also get that to run in a nodejs server.Arkady Bazhanov
07/05/2021, 7:59 AMlouiscad
07/05/2021, 8:36 AM