From 9c32d5d4dbc9ab57f1f31b3e1a1eda7f234e75d5 Mon Sep 17 00:00:00 2001 From: Fergus Ruston Date: Tue, 7 Nov 2023 17:17:14 +0000 Subject: [PATCH] docs: update docs with correct tailwind example configuration --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 12d9f54d..ac0a0293 100644 --- a/README.md +++ b/README.md @@ -18,13 +18,15 @@ Inclue or extend our colour configuration and add our components to Tailwind's c ```js // tailwind.config.js -import colors from '@nearform/quantum/colors' +import colors from '@nearform/quantum/dist/colors' module.exports = { - colors, content: [ "./node_modules/@nearform/quantum/**/*.js" - ] + ], + theme: { + colors, + } }; ```