mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2025-05-19 09:54:58 +00:00
style: format code with Prettier
This commit fixes the style issues introduced in 6e31b44
according to the output
from Prettier.
Details: None
This commit is contained in:
parent
6e31b44137
commit
cd6fdf3b29
19 changed files with 131 additions and 105 deletions
|
@ -9,53 +9,53 @@ const routes = {
|
|||
asyncComponent: () => import("./pages/PageIndex.svelte"),
|
||||
loadingComponent: PageLoading,
|
||||
conditions: [],
|
||||
userData: { showNavBar: true, fullWidth: false, },
|
||||
userData: { showNavBar: true, fullWidth: false },
|
||||
}),
|
||||
"/menu": wrap({
|
||||
asyncComponent: () => import("./pages/PageMenu.svelte"),
|
||||
loadingComponent: PageLoading,
|
||||
conditions: [],
|
||||
userData: { showNavBar: true, fullWidth: true, },
|
||||
userData: { showNavBar: true, fullWidth: true },
|
||||
}),
|
||||
"/item/:uuid": wrap({
|
||||
asyncComponent: () => import("./pages/PageItem.svelte"),
|
||||
loadingComponent: PageLoading,
|
||||
conditions: [],
|
||||
userData: { showNavBar: true, fullWidth: true, },
|
||||
userData: { showNavBar: true, fullWidth: true },
|
||||
}),
|
||||
"/contact": wrap({
|
||||
asyncComponent: () => import("./pages/PageContact.svelte"),
|
||||
loadingComponent: PageLoading,
|
||||
conditions: [],
|
||||
userData: { showNavBar: true, fullWidth: false, },
|
||||
userData: { showNavBar: true, fullWidth: false },
|
||||
}),
|
||||
"/about": wrap({
|
||||
component: PageLoading,
|
||||
loadingComponent: PageLoading,
|
||||
conditions: [],
|
||||
userData: { showNavBar: true, fullWidth: false, },
|
||||
userData: { showNavBar: true, fullWidth: false },
|
||||
}),
|
||||
"/cart": wrap({
|
||||
asyncComponent: () => import("./pages/PageCart.svelte"),
|
||||
loadingComponent: PageLoading,
|
||||
conditions: [],
|
||||
userData: { showNavBar: true, fullWidth: false, },
|
||||
userData: { showNavBar: true, fullWidth: false },
|
||||
}),
|
||||
"/ForOhFor": wrap({
|
||||
component: Page404,
|
||||
conditions: [],
|
||||
userData: { showNavBar: true, fullWidth: false, },
|
||||
userData: { showNavBar: true, fullWidth: false },
|
||||
}),
|
||||
"/ServerError": wrap({
|
||||
component: Page500,
|
||||
conditions: [],
|
||||
userData: { showNavBar: true, fullWidth: false, },
|
||||
userData: { showNavBar: true, fullWidth: false },
|
||||
}),
|
||||
"*": wrap({
|
||||
component: Page404,
|
||||
conditions: [],
|
||||
userData: { showNavBar: true, fullWidth: false, },
|
||||
userData: { showNavBar: true, fullWidth: false },
|
||||
}),
|
||||
}
|
||||
};
|
||||
|
||||
export default routes;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue