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