From 1512a6f3330e8f4844d7d41d7843e5348c3df4c2 Mon Sep 17 00:00:00 2001 From: Lennart Date: Wed, 28 Oct 2020 14:12:22 +0100 Subject: [PATCH] chore(gatsby-plugin-emotion): Remove invalid options syntax (#27697) Co-authored-by: gatsbybot --- packages/gatsby-plugin-emotion/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/gatsby-plugin-emotion/README.md b/packages/gatsby-plugin-emotion/README.md index 887f8c342d6bb..6831dbd13bfaa 100644 --- a/packages/gatsby-plugin-emotion/README.md +++ b/packages/gatsby-plugin-emotion/README.md @@ -27,10 +27,10 @@ module.exports = { options: { // Accepts the following options, all of which are defined by `babel-plugin-emotion` plugin. // The values for each key in this example are the defaults the plugin uses. - `sourceMap`: true, - `autoLabel`: process.env.NODE_ENV !== 'production', - `labelFormat`: `[local]`, - `cssPropOptimization`: true + sourceMap: true, + autoLabel: process.env.NODE_ENV !== "production", + labelFormat: `[local]`, + cssPropOptimization: true, }, }, ],