DEV Community

Discussion on: Exploring strapi.js - Build an instagram clone with strapi and svelte

Collapse
 
arnu515 profile image
arnu515

Hmm, looks like you have to import it.

import qs from "qs";
// or if using parse function only,
import {parse} from "qs";
Enter fullscreen mode Exit fullscreen mode

If you get an error after this also, (maybe module not found), then just install it:

npm i qs
Enter fullscreen mode Exit fullscreen mode

If using typescript, install types too:

npm i -D @types/qs
Enter fullscreen mode Exit fullscreen mode