2019-07-25 08:31:54 +02:00
|
|
|
export const defaultPagesObject = () => ({
|
|
|
|
main: {
|
|
|
|
index: {
|
|
|
|
_component : "./components/indexHtml"
|
|
|
|
},
|
|
|
|
appBody: "bbapp.main.json"
|
|
|
|
},
|
|
|
|
unauthenticated: {
|
|
|
|
index: {
|
|
|
|
_component : "./components/indexHtml"
|
|
|
|
},
|
|
|
|
appBody: "bbapp.unauthenticated.json"
|
|
|
|
},
|
2019-07-26 18:08:59 +02:00
|
|
|
componentLibraries: ["./components"]
|
2019-07-25 08:31:54 +02:00
|
|
|
});
|