mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 02:54:15 +00:00
52 lines
968 B
JavaScript
Executable File
52 lines
968 B
JavaScript
Executable File
export default [
|
|
{
|
|
path: "/login",
|
|
useLayout: "none",
|
|
public: true
|
|
},
|
|
{
|
|
path: "/home/*",
|
|
useLayout: "default",
|
|
useTitle: "Home",
|
|
},
|
|
{
|
|
path: "/posts/*",
|
|
useLayout: "default",
|
|
useTitle: "Posts",
|
|
},
|
|
{
|
|
path: "/post/*",
|
|
useLayout: "default",
|
|
public: true
|
|
},
|
|
{
|
|
path: "/live/*",
|
|
useLayout: "default",
|
|
public: true
|
|
},
|
|
{
|
|
path: "/featured-event/*",
|
|
useLayout: "default",
|
|
public: true
|
|
},
|
|
{
|
|
path: "/settings/*",
|
|
useLayout: "default",
|
|
centeredContent: true
|
|
},
|
|
{
|
|
path: "/security/*",
|
|
useLayout: "default",
|
|
centeredContent: true
|
|
},
|
|
{
|
|
path: "/music/creator",
|
|
useLayout: "default",
|
|
centeredContent: true
|
|
},
|
|
{
|
|
path: "/landing/*",
|
|
useLayout: "blank",
|
|
public: true
|
|
}
|
|
] |