mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
33 lines
681 B
JavaScript
Executable File
33 lines
681 B
JavaScript
Executable File
const path = require('path')
|
|
|
|
module.exports = function basicModule(options, resolve) {
|
|
// Add vendor
|
|
this.addVendor('lodash')
|
|
|
|
// Add a plugin
|
|
this.addPlugin(path.resolve(__dirname, 'reverse.js'))
|
|
|
|
// Extend build
|
|
this.extendBuild((config, { isClient, isServer }) => {
|
|
// Do nothing!
|
|
})
|
|
|
|
// Extend build again
|
|
this.extendBuild((config, { isClient, isServer }) => {
|
|
// Do nothing!
|
|
return config
|
|
})
|
|
|
|
// Extend routes
|
|
this.extendRoutes((routes, resolve) => {
|
|
// Do nothing!
|
|
return routes
|
|
})
|
|
|
|
// Require same module twice
|
|
this.requireModule('~/modules/empty/index.js')
|
|
this.requireModule('~/modules/empty/index.js')
|
|
|
|
resolve()
|
|
}
|