Thanks…
You mean here from the frontity.settings.js, I added the main url as the homepage, im using the flywheel by local.
const settings = {
"name": "frontity-project",
"state": {
"frontity": {
"url": "http://devs.local/",
"title": "Test Frontity Blog",
"description": "WordPress installation for Frontity development"
}
},
"packages": [
{
"name": "@frontity/mars-theme",
"state": {
"theme": {
"menu": [
[
"Home",
"/"
],
[
"Nature",
"/category/nature/"
],
[
"Travel",
"/category/travel/"
],
[
"Japan",
"/tag/japan/"
],
[
"About Us",
"/about-us/"
]
],
"featured": {
"showOnList": false,
"showOnPost": false
}
}
}
},
{
"name": "@frontity/wp-source",
"state": {
"source": {
"url": "http://devs.local/"
}
}
},
"@frontity/tiny-router",
"@frontity/html2react"
]
};
export default settings;
I did check out the getting started guide on how to install and get the stuff running, just want to know how i can set my new page to be the new homepage.
Thank you