mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
14 lines
235 B
JavaScript
14 lines
235 B
JavaScript
|
import path from 'path'
|
||
|
|
||
|
export default {
|
||
|
modulesDir: path.join(__dirname, '..', '..', '..', 'node_modules'),
|
||
|
transition: false,
|
||
|
vue: {
|
||
|
config: {
|
||
|
silent: false,
|
||
|
performance: true,
|
||
|
devtools: true
|
||
|
}
|
||
|
}
|
||
|
}
|