Created
April 4, 2019 09:04
-
-
Save MaedahBatool/7eeb6ec5574f06fb5f9644ddcc065bac to your computer and use it in GitHub Desktop.
gatsby-remark-embed-video Plugin Working
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
siteMetadata: { | |
title: 'Your Site Title', | |
siteUrl: 'https://yoursite.com', | |
}, | |
plugins: [ | |
{ | |
resolve: "gatsby-remark-embed-video", | |
options: { | |
width: 800, | |
ratio: 1.77, | |
height: 400, | |
related: false, | |
noIframeBorder: true | |
}, | |
}, | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment