mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 10:54:49 +00:00
14 lines
559 B
TypeScript
14 lines
559 B
TypeScript
import { defineNuxtPlugin } from '#app'
|
|
|
|
export default defineNuxtPlugin((nuxtApp) => {
|
|
// Only activate in development
|
|
const logs = nuxtApp.payload.logs || []
|
|
if (logs.length > 0) {
|
|
const ssrLogStyle = 'background: #003C3C;border-radius: 0.5em;color: white;font-weight: bold;padding: 2px 0.5em;'
|
|
console.groupCollapsed && console.groupCollapsed('%cNuxt Server Logs', ssrLogStyle)
|
|
logs.forEach(logObj => (console[logObj.type] || console.log)(...logObj.args))
|
|
delete nuxtApp.payload.logs
|
|
console.groupEnd && console.groupEnd()
|
|
}
|
|
})
|