Merge pull request #6645 from Ocelot-Social-Community/fix-vetur-config

fix(webapp): add jsconfig.json to navigate in webapp.
This commit is contained in:
mahula 2023-09-12 08:43:54 +02:00 committed by GitHub
commit f06ec6503b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
webapp/jsconfig.json Normal file
View File

@ -0,0 +1,13 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": [
"./*"
],
"~*": [
"./*"
],
}
}
}