mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
11 lines
258 B
JavaScript
11 lines
258 B
JavaScript
export default function ({ req, redirect, route }) {
|
|
if (process.server) {
|
|
if (req.firstrun && route.path !== '/setup') {
|
|
return redirect('/setup')
|
|
}
|
|
if (!req.firstrun && route.path === '/setup') {
|
|
return redirect('/')
|
|
}
|
|
}
|
|
|
|
}
|