bug(admin,gql): Fix startup behavior in dev mode

Because:
- Nest apis could fail to start because main.js wasn't found
- NX work changed structure of dist folder

This Commit:
- Adjust the path to point to the new location of main.js
This commit is contained in:
dschom 2023-05-24 11:30:11 -07:00
Родитель 2fdd6fde21
Коммит 5ec03caf91
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F26AEE99174EE68B
2 изменённых файлов: 5 добавлений и 5 удалений

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

@ -2,9 +2,8 @@
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"assets": [
"**/*.gql"
],
"assets": ["**/*.gql"],
"watchAssets": true
}
},
"entryFile": "src/packages/admin-server/main.js"
}

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

@ -1,4 +1,5 @@
{
"collection": "@nestjs/schematics",
"sourceRoot": "src"
"sourceRoot": "src",
"entryFile": "packages/fxa-graphql-api/src/main.js"
}