mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
31 lines
682 B
JavaScript
31 lines
682 B
JavaScript
import path from 'path'
|
|
|
|
export default function basicModule(options) {
|
|
// Add a plugin
|
|
this.addPlugin(path.resolve(__dirname, 'reverse.js'))
|
|
|
|
// Add a layout
|
|
this.addLayout(path.resolve(__dirname, 'layout.vue'))
|
|
|
|
// 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')
|
|
}
|