Intellisense not working.
npx prisma generate ran successfully, but I don't get any suggestions when I call the Prisma instance.I have restarted TS server, the editor and ran the command many times but it still doesn't work.
This is in
prisma.schema:generator client {
provider = "prisma-client-js"
output = "../app/generated/prisma"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}