generate middleware error Cannot load components DOMException: Failed to execute 'appendChild' on 'Node': This node type does not support this method.
[issue link]export default function (context) {
context.userAgent = context.isServer ? context.req.headers[‘user-agent’] : navigator.userAgent
}
export default function (context) {
try {
context.userAgent = context.isServer ? context.req.headers[‘user-agent’] : window.navigator.userAgent
} catch (e) {
console.log(e)
}
}