mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-12 11:48:17 +00:00
8 lines
146 B
JavaScript
8 lines
146 B
JavaScript
|
'use strict'
|
||
|
|
||
|
const debug = require('debug')('nuxt:render-route')
|
||
|
|
||
|
module.exports = function (url, context) {
|
||
|
debug(`Rendering route ${url}`)
|
||
|
}
|