Chnage the root of the app to prevent issues with code checker

Signed-off-by: Christian Wolf <github@christianwolf.email>
This commit is contained in:
Christian Wolf 2023-01-14 14:05:51 +01:00
Родитель 8b7be38a13
Коммит 20b118c865
2 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -19,6 +19,8 @@ rules:
- error
- allowForLoopAfterthoughts: true
root: true
settings:
"import/resolver":
alias:

Просмотреть файл

@ -16,6 +16,7 @@ const isDev = buildMode === 'development'
function cookbookConfig (env) {
const config = merge(webpackConfig, {
context: path.resolve(__dirname),
entry: {
guest: path.resolve(path.join('src', 'guest.js')),
},