mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
change routes
This commit is contained in:
parent
09067e456e
commit
ef658a8b64
@ -1,71 +1,72 @@
|
|||||||
export default [
|
export default [
|
||||||
{
|
{
|
||||||
path: "/auth",
|
path: "/auth",
|
||||||
useLayout: "minimal",
|
useLayout: "minimal",
|
||||||
public: true
|
public: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/post/*",
|
path: "/post/*",
|
||||||
useLayout: "default",
|
useLayout: "default",
|
||||||
public: true
|
public: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/tv/live/*",
|
path: "/tv/live/*",
|
||||||
useLayout: "default",
|
useLayout: "default",
|
||||||
public: true
|
public: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/featured-event/*",
|
path: "/featured-event/*",
|
||||||
useLayout: "default",
|
useLayout: "default",
|
||||||
public: true
|
public: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/settings",
|
path: "/settings",
|
||||||
useLayout: "default",
|
useLayout: "default",
|
||||||
centeredContent: {
|
centeredContent: {
|
||||||
mobile: true,
|
mobile: true,
|
||||||
desktop: false,
|
desktop: false,
|
||||||
},
|
},
|
||||||
mobileTopBarSpacer: true,
|
mobileTopBarSpacer: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/music/*",
|
path: "/music/*",
|
||||||
useLayout: "default",
|
useLayout: "default",
|
||||||
centeredContent: true,
|
centeredContent: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/nfc/*",
|
path: "/nfc/*",
|
||||||
useLayout: "minimal",
|
useLayout: "minimal",
|
||||||
public: true,
|
public: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/privacy/*",
|
path: "/privacy/*",
|
||||||
useLayout: "default",
|
useLayout: "default",
|
||||||
public: true
|
public: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/terms/*",
|
path: "/terms/*",
|
||||||
useLayout: "default",
|
useLayout: "default",
|
||||||
public: true
|
public: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/apr/*",
|
path: "/recover/*",
|
||||||
useLayout: "minimal",
|
useLayout: "minimal",
|
||||||
public: true
|
public: true,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: "/marketplace/*",
|
{
|
||||||
useLayout: "default",
|
path: "/marketplace/*",
|
||||||
centeredContent: true,
|
useLayout: "default",
|
||||||
extendedContent: true,
|
centeredContent: true,
|
||||||
},
|
extendedContent: true,
|
||||||
// THIS MUST BE THE LAST ROUTE
|
},
|
||||||
{
|
// THIS MUST BE THE LAST ROUTE
|
||||||
path: "/",
|
{
|
||||||
useLayout: "default",
|
path: "/",
|
||||||
centeredContent: {
|
useLayout: "default",
|
||||||
mobile: false,
|
centeredContent: {
|
||||||
desktop: true,
|
mobile: false,
|
||||||
},
|
desktop: true,
|
||||||
},
|
},
|
||||||
]
|
},
|
||||||
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user