mirror of
https://github.com/nuxt/nuxt.git
synced 2024-12-04 03:17:14 +00:00
11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
'use strict'
|
|
const authentication = require('./authentication')
|
|
const user = require('./user')
|
|
|
|
module.exports = function () {
|
|
const app = this
|
|
|
|
app.configure(authentication)
|
|
app.configure(user)
|
|
}
|