[READ-ONLY] Mirror of https://github.com/hacknug/tailwindcss-image-rendering. Image-rendering utilities for Tailwind CSS. www.npmjs.com/package/tailwindcss-image-rendering
0

Configure Feed

Select the types of activity you want to include in your feed.

Update readme with v1.x config example

Nestor Vera (May 21, 2019, 8:12 PM +0200) 10ebe7f2 814186ca

+10 -1
+10 -1
readme.md
··· 20 20 ## Usage 21 21 22 22 ```js 23 - require('tailwindcss-image-rendering')(['responsive']) 23 + // tailwind.config.js 24 + { 25 + theme: {}, // no options to configure 26 + variants: { // all the following default to ['responsive'] 27 + imageRendering: ['responsive'], 28 + }, 29 + plugins: [ 30 + require('tailwindcss-image-rendering'), // no options to configure 31 + ], 32 + } 24 33 ``` 25 34 26 35 ```css