mirror of
https://github.com/nuxt/nuxt.git
synced 2024-12-02 18:37:21 +00:00
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
import nuxt from './nuxt'
|
|
|
|
export default function () {
|
|
// Add your custom middleware here. Remember, that
|
|
// just like Express the order matters, so error
|
|
// handling middleware should go last.
|
|
const app = this
|
|
|
|
app.use(nuxt)
|
|
}
|