<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Hridoy Halder Partho</title>
    <description>The latest articles on DEV Community by Hridoy Halder Partho (@hridoypartho).</description>
    <link>https://dev.to/hridoypartho</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F663193%2Fb5cbab3b-91db-441c-876c-c7b672f14ee8.jpeg</url>
      <title>DEV Community: Hridoy Halder Partho</title>
      <link>https://dev.to/hridoypartho</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hridoypartho"/>
    <language>en</language>
    <item>
      <title>Set Up Tailwind Css With vite-react-app and yarn</title>
      <dc:creator>Hridoy Halder Partho</dc:creator>
      <pubDate>Sun, 23 Apr 2023 05:22:43 +0000</pubDate>
      <link>https://dev.to/hridoypartho/set-up-tailwind-css-with-vite-react-app-and-yarn-2ge2</link>
      <guid>https://dev.to/hridoypartho/set-up-tailwind-css-with-vite-react-app-and-yarn-2ge2</guid>
      <description>&lt;h2&gt;
  
  
  Install Tailwind CSS with postcss &amp;amp; autoprefixer
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;yarn add -D tailwindcss postcss autoprefixer
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Generate tailwind.config.js and postcss.config.js
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;yarn tailwindcss init -p
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Modify tailwind.config.js file
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["./src/**/*.{html,js}"],
  theme: {
    extend: {},
  },
  plugins: [],
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Add tailwind base, components and utilities to index.css
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@tailwind base;
@tailwind components;
@tailwind utilities;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>react</category>
      <category>tailwindcss</category>
      <category>javascript</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
