From 2c42a7347106977e804f3ccfa8b69ebdc260dd56 Mon Sep 17 00:00:00 2001 From: Lucas Toledo <65132614+ToledoSDL@users.noreply.github.com> Date: Wed, 10 Jan 2024 18:56:51 -0300 Subject: [PATCH] fix: correction of README .sss extension for example (#258) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e612fc6..dc48888 100644 --- a/README.md +++ b/README.md @@ -336,7 +336,7 @@ const { readFileSync } = require('fs') const postcss = require('postcss') const postcssrc = require('postcss-load-config') -const css = readFileSync('index.sss', 'utf8') +const css = readFileSync('index.css', 'utf8') const ctx = { parser: true, map: 'inline' }