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