Hey dude,
So as answer 1 said, if You’re using typescript You can ts generate types
This will create a file “schemas,d.ts” or sth like that
In that file You should have almost all the content types, only that You have to access their “attributes” attribute (so You import the type, but the fields of the content types are like:
import type ApiOrder
type Order = ApiOrder[“attributes”]
What You can do is then add the strapi repo to Your nuxt repo as a submodule, You can then import those types in Your front end code