mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
12 lines
198 B
JavaScript
12 lines
198 B
JavaScript
module.exports = {
|
|
modules: ['~/modules/hooks'],
|
|
build: {
|
|
stats: false,
|
|
extend(config, options) {
|
|
if (options.dev) {
|
|
// Please use isDev instead of dev
|
|
}
|
|
}
|
|
}
|
|
}
|