2019-07-25 08:31:54 +02:00
|
|
|
export const defaultPagesObject = () => ({
|
2020-02-03 10:24:25 +01:00
|
|
|
main: {
|
|
|
|
index: {
|
|
|
|
_component: "./components/indexHtml",
|
2019-07-25 08:31:54 +02:00
|
|
|
},
|
2020-02-03 10:24:25 +01:00
|
|
|
appBody: "bbapp.main.json",
|
|
|
|
},
|
|
|
|
unauthenticated: {
|
|
|
|
index: {
|
|
|
|
_component: "./components/indexHtml",
|
2019-07-25 08:31:54 +02:00
|
|
|
},
|
2020-02-03 10:24:25 +01:00
|
|
|
appBody: "bbapp.unauthenticated.json",
|
|
|
|
},
|
|
|
|
componentLibraries: [],
|
|
|
|
stylesheets: [],
|
|
|
|
})
|