mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-27 08:02:01 +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}`)
|
||
|
}
|