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-08-19 22:18:23 +02:00
|
|
|
componentLibraries: [],
|
|
|
|
stylesheets: []
|
|
|
|
|
2019-07-25 08:31:54 +02:00
|
|
|
});
|