Use NextJS middleware for proxying

This commit is contained in:
Darren Clarke 2023-05-30 09:05:40 +00:00 committed by GitHub
parent 4e4603bd71
commit df9b8abf15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 154 additions and 94 deletions

View file

@ -1,31 +1,34 @@
{
"name": "link-stack",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "dotenv -- turbo run dev"
},
"packageManager": "npm@9.3.1",
"workspaces": [
"apps/*",
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://gitlab.com/digiresilience/link/link-stack.git"
},
"author": "Darren Clarke",
"license": "ISC",
"overrides": {
"@mui/styles": {
"react": "18.2.0"
},
"typeorm": {
"pg": "^8.11.0"
},
"hapi-postgraphile": {
"pg": "^8.11.0"
}
}
"name": "link-stack",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "dotenv -- turbo run dev"
},
"packageManager": "npm@9.3.1",
"workspaces": [
"apps/*",
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://gitlab.com/digiresilience/link/link-stack.git"
},
"author": "Darren Clarke",
"license": "ISC",
"overrides": {
"@mui/styles": {
"react": "18.2.0"
},
"typeorm": {
"pg": "^8.11.0"
},
"hapi-postgraphile": {
"pg": "^8.11.0"
}
},
"devDependencies": {
"prettier": "^2.8.8"
}
}