Dynamic Category Page as a home page. Possible?

Hello!
I would like my Dynamic Category Page to be my home page? is it possible? If yes then how can I make it happen because I can’t find any possible way of doing it.
Thank you!

Hi,
Currently, it’s not possible to set the dynamic page as a homepage of your site.
However, you can redirect to it from the homepage on load.
E.g. make you current homepage something like welcome screen, and use the following code to direct to the relevant page when it loads:
import wixLocation from ‘wix-location’;
$w.onReady( function () {
wixLocation.to(“/your dynamic page URL”);
});
Learn more about Wix Location here .