This commit is contained in:
Medzik 2021-09-28 17:27:48 +00:00
parent 5fcb80126e
commit c83a22a9ea
2 changed files with 7 additions and 1 deletions

View File

@ -29,6 +29,12 @@
"quotes": [
"error",
"single"
],
"no-unused-vars": [
"warn"
],
"react/jsx-key": [
"off"
]
}
}

View File

@ -7,6 +7,6 @@ const HeadComponents = [
/>,
]
exports.onRenderBody = ({ setHeadComponents }, pluginOptions) => {
exports.onRenderBody = ({ setHeadComponents }) => {
setHeadComponents(HeadComponents)
}