1
0
Fork 0

fix(backend): Proper import of archived repo

Not really sure what happened, but clearly when I imported our backend
code into our monorepo, it was not the latest version.

So I'm fixing this now by putting in the latest code. I will re-apply
the changes since later.
This commit is contained in:
Joost De Cock 2022-01-01 15:18:27 +01:00
parent bcfb919172
commit ca8ceb1a30
90 changed files with 4337 additions and 2693 deletions

View file

@ -1,5 +1,5 @@
import cors from "cors";
import cors from 'cors'
export default (app) => {
app.use(cors());
export default app => {
app.use(cors())
}