mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-23 10:27:23 -08:00
* unified upload button + download backups * javascript toolings * fix vuetur config * fixed type check error * refactor: clean up bag javascript Co-authored-by: Hayden <hay-kot@pm.me>
17 lines
395 B
JavaScript
17 lines
395 B
JavaScript
// vetur.config.js
|
|
/** @type {import('vls').VeturConfig} */
|
|
module.exports = {
|
|
settings: {
|
|
"vetur.useWorkspaceDependencies": true,
|
|
"vetur.experimental.templateInterpolationService": true,
|
|
"vetur.validation.interpolation": false,
|
|
},
|
|
projects: [
|
|
{
|
|
root: "./frontend",
|
|
package: "package.json",
|
|
globalComponents: ["./src/components/**/*.vue"],
|
|
},
|
|
],
|
|
};
|