mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
|
'use strict';
|
||
|
const authentication = require('./authentication');
|
||
|
const user = require('./user');
|
||
|
|
||
|
module.exports = function() {
|
||
|
const app = this;
|
||
|
|
||
|
|
||
|
app.configure(authentication);
|
||
|
app.configure(user);
|
||
|
};
|