From 1391b6006aa7eb483ad4685dec33509c280ba174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=20Mu=C3=B1oz?= Date: Tue, 17 Oct 2023 15:47:43 +0200 Subject: [PATCH] Update README.md Fixed a couple of types in the example config file --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2df4fb7..0deb829 100644 --- a/README.md +++ b/README.md @@ -76,13 +76,13 @@ const config = { colors: [ { format: 'scss', - output: 'src/styles/colors.css', // 👈 Path where your colors SCSS file should be generated. + output: 'src/styles/colors.scss', // 👈 Path where your colors SCSS file should be generated. }, ], typographies: [ { format: 'json', - output: 'src/styles/typographies.css', // 👈 Path where your typographies JSON file should be generated. + output: 'src/styles/typographies.json', // 👈 Path where your typographies JSON file should be generated. }, ], },