mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
10 lines
293 B
JavaScript
10 lines
293 B
JavaScript
export default (error, context) => {
|
|
/* eslint-disable-next-line no-console */
|
|
console.log(
|
|
'%cError',
|
|
'background: red; color: white; padding: 2px 4px; border-radius: 3px; font-weight: bold;',
|
|
error.message,
|
|
)
|
|
context.error({ statusCode: 304, message: 'Server error' })
|
|
}
|