docs: fix import of cors (#4201)
* docs: fix import of cors * eslint fixes
This commit is contained in:
@@ -105,7 +105,7 @@ import {
|
|||||||
import {
|
import {
|
||||||
ConfigModule,
|
ConfigModule,
|
||||||
} from "@medusajs/medusa/dist/types/global"
|
} from "@medusajs/medusa/dist/types/global"
|
||||||
import * as cors from "cors"
|
import cors from "cors"
|
||||||
```
|
```
|
||||||
|
|
||||||
Next, in the exported function, retrieve the CORS configurations of your backend using the utility functions you imported:
|
Next, in the exported function, retrieve the CORS configurations of your backend using the utility functions you imported:
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ npm install cors
|
|||||||
Then, create the file `src/api/routes/create-product.ts` with the following content:
|
Then, create the file `src/api/routes/create-product.ts` with the following content:
|
||||||
|
|
||||||
```ts title=src/api/routes/create-product.ts
|
```ts title=src/api/routes/create-product.ts
|
||||||
import * as cors from "cors"
|
import cors from "cors"
|
||||||
import { Router } from "express"
|
import { Router } from "express"
|
||||||
import {
|
import {
|
||||||
registerLoggedInUser,
|
registerLoggedInUser,
|
||||||
|
|||||||
Reference in New Issue
Block a user