Harrison Deng
3d3c43b944
Implemented logging in and logging out. Implemented authenticated http client. Laid some groundwork for SCSS.
15 lines
396 B
JavaScript
15 lines
396 B
JavaScript
module.exports = {
|
|
// **optional** default: `{}`
|
|
// override vscode settings
|
|
// Notice: It only affects the settings used by Vetur.
|
|
settings: {
|
|
"vetur.useWorkspaceDependencies": true,
|
|
"vetur.experimental.templateInterpolationService": true
|
|
},
|
|
// **optional** default: `[{ root: './' }]`
|
|
// support monorepos
|
|
projects: [
|
|
"./client"
|
|
]
|
|
};
|