use webapp builder
This commit is contained in:
12
src/core/utils/globalServerProps.js
Normal file
12
src/core/utils/globalServerProps.js
Normal file
@@ -0,0 +1,12 @@
|
||||
import {parse} from "next-useragent";
|
||||
|
||||
export const globalServerProps = async ({req, locale}) => {
|
||||
const {isBot} = parse(req.headers["user-agent"]);
|
||||
|
||||
return {
|
||||
config: (await import(`&/config.json`)).default,
|
||||
messages: (await import(`&/locales/${locale}/app.json`)).default,
|
||||
isBot,
|
||||
locale,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user