mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-24 06:35:10 +00:00
13 lines
188 B
JavaScript
13 lines
188 B
JavaScript
|
module.exports = {
|
||
|
modules: [
|
||
|
'~/modules/hooks'
|
||
|
],
|
||
|
build: {
|
||
|
extend(config, options) {
|
||
|
if (options.dev) {
|
||
|
// Please use isDev instead of dev
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|