Graphite/vetur.config.js
ProTheory8 0083a2f788
Add .gitattributes file (#46)
Add .gitattributes and enforce the use of LF
2021-03-27 11:48:05 +01:00

13 lines
351 B
JavaScript

// vetur.config.js
/** @type {import('vls').VeturConfig} */
module.exports = {
// **optional** default: `{}`
// override vscode settings
// Notice: It only affects the settings used by Vetur.
settings: {
"vetur.useWorkspaceDependencies": true,
},
// **optional** default: `[{ root: './' }]`
// support monorepos
projects: ['./client/web']
}