D
D
Rebased against master. Trying to install dependencies in China is extremely frustrating!
@alexkreidler There's quite a lot done here. It pretty much works and there was a PR against this one that fixes some more stuff on the fork. I've had to...
@birkir I've had a play with swapping out `markdown-draft-js` for both: - draft-js-import-markdown - draft-js-export-markdown It looks like the two above convert into DraftJS ContentState but markdown-draft-js doesn't quite export...
Alright I don't think this happens on master after cloning and playing with it locally. The above was deployed onto Heroku using the one-clicker. One thing I did notice though...
@birkir do you have any opinion on the name of the fields? Right now for an ContentType called "Page" there is: - Page - allPage Prismic has: - page -...
Prisma just 3 ways of querying and supports Relay connections: ```gql { page(where: { id: "cjsq05fhwbuuc0c153ho1xxfn" }) { id title } pages(first: 2, after: "cjsq05fhwbuuc0c153ho1xxfn") { id title } pagesConnection(first:...
I believe there's code which parses package.json and it could be the same reason. If you run it through an online json validator it'll tell you what's wrong
Sounds good to me. I guess I would have achieved perfectly cropped images by defining multiple images and width/height validators: ```gql { posts { title content imageXS imageMD imageLG }...
Images uploaded to an S3 bucket with on-the-fly transformations via Lambda function would make it cheaper and in-keeping with the idea of being self-hosted/managed
For me personally I'm not really in need of the raw/ast view but just added it anyway as the editor contained a tree that was easy to expose :) Maybe...