17 lines
381 B
JavaScript
17 lines
381 B
JavaScript
export const defaultPagesObject = () => ({
|
|
main: {
|
|
index: {
|
|
_component : "./components/indexHtml"
|
|
},
|
|
appBody: "bbapp.main.json"
|
|
},
|
|
unauthenticated: {
|
|
index: {
|
|
_component : "./components/indexHtml"
|
|
},
|
|
appBody: "bbapp.unauthenticated.json"
|
|
},
|
|
componentLibraries: [],
|
|
stylesheets: []
|
|
|
|
}); |