<?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>Forem: Lord Potato</title>
    <description>The latest articles on Forem by Lord Potato (@lord_potato_c8a8c0086ffb5).</description>
    <link>https://forem.com/lord_potato_c8a8c0086ffb5</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%2F3054416%2F2a1bad51-938a-4e0b-a439-0dc44c8f8928.png</url>
      <title>Forem: Lord Potato</title>
      <link>https://forem.com/lord_potato_c8a8c0086ffb5</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/lord_potato_c8a8c0086ffb5"/>
    <language>en</language>
    <item>
      <title>🎯 Tailwind CSS v4 + Vite + React Setup (The Clean Way)</title>
      <dc:creator>Lord Potato</dc:creator>
      <pubDate>Fri, 25 Apr 2025 05:14:44 +0000</pubDate>
      <link>https://forem.com/lord_potato_c8a8c0086ffb5/tailwind-css-v4-vite-react-setup-the-clean-way-338j</link>
      <guid>https://forem.com/lord_potato_c8a8c0086ffb5/tailwind-css-v4-vite-react-setup-the-clean-way-338j</guid>
      <description>&lt;p&gt;If you're starting with &lt;strong&gt;Tailwind CSS v4&lt;/strong&gt;, you might’ve noticed:&lt;br&gt;
most tutorials and videos are still stuck in the old version. I faced it too—docs didn’t help much, and outdated commands like &lt;code&gt;tailwindcss init&lt;/code&gt;had me completely lost.&lt;/p&gt;

&lt;p&gt;So here’s the step-by-step setup that finally worked for me:&lt;/p&gt;

&lt;p&gt;✅ &lt;strong&gt;Tailwind v4 Setup with React + Vite&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Create your Vite + React project:&lt;br&gt;
&lt;code&gt;npm create vite@latest my-app -- --template react&lt;/code&gt;&lt;br&gt;
&lt;code&gt;cd my-app&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Install Tailwind CSS v4 with Vite plugin:&lt;br&gt;
&lt;code&gt;npm install -D tailwindcss@latest @tailwindcss/vite&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Create and edit src/index.css:&lt;br&gt;
&lt;code&gt;@import "tailwindcss";&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Update vite.config.js:&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'

export default defineConfig({
  plugins: [react(), tailwindcss()],
});
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Make sure main.jsx &lt;code&gt;imports ./index.css&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Test it in App.jsx:&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function App() {
  return (
    &amp;lt;h1 className="text-4xl font-bold text-blue-600"&amp;gt;
      Hello Tailwind v4!
    &amp;lt;/h1&amp;gt;
  );
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Run your dev server:
&lt;code&gt;npm run dev&lt;/code&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;✅ And you’re all set with Tailwind v4 running in your React app using Vite!&lt;/p&gt;

&lt;p&gt;😅 Want to Hear the Chaos Behind This?&lt;br&gt;
If you’re curious about how I actually figured this out—confusion, outdated guides, broken commands, Discord help, and even ChatGPT misfires—I wrote a separate blog post on my full struggle story in Medium.&lt;/p&gt;

&lt;p&gt;👉 Read: &lt;a href="https://medium.com/@svsree2002/my-tailwind-css-v4-setup-struggle-cf6239eed9f6" rel="noopener noreferrer"&gt;💻 My Tailwind CSS v4 Setup Struggle&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hope it helps another beginner avoid the same mess I went through! 💙&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>tailwindcss</category>
      <category>programming</category>
      <category>react</category>
    </item>
    <item>
      <title>Feeling Lost but Still Learning: My Web Dev Journey So Far</title>
      <dc:creator>Lord Potato</dc:creator>
      <pubDate>Tue, 22 Apr 2025 11:05:58 +0000</pubDate>
      <link>https://forem.com/lord_potato_c8a8c0086ffb5/feeling-lost-but-still-learning-my-web-dev-journey-so-far-34di</link>
      <guid>https://forem.com/lord_potato_c8a8c0086ffb5/feeling-lost-but-still-learning-my-web-dev-journey-so-far-34di</guid>
      <description>&lt;p&gt;✨ Burnout? Imposter Syndrome? Screen headaches?&lt;br&gt;
Here’s a raw and real take on trying to balance learning web dev, working full-time, and just trying to not lose it while exploring open source too.&lt;/p&gt;

&lt;p&gt;📚 Built projects, felt lost, found small wins — and wrote about all of it.&lt;/p&gt;

&lt;p&gt;Read my honest journey here → [&lt;a href="https://medium.com/@svsree2002/feeling-lost-but-still-learning-my-web-dev-journey-so-far-76b038deaa19" rel="noopener noreferrer"&gt;https://medium.com/@svsree2002/feeling-lost-but-still-learning-my-web-dev-journey-so-far-76b038deaa19&lt;/a&gt;]&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>opensource</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Feeling Lost but Still Learning: My Web Dev Journey So Far</title>
      <dc:creator>Lord Potato</dc:creator>
      <pubDate>Tue, 22 Apr 2025 11:05:58 +0000</pubDate>
      <link>https://forem.com/lord_potato_c8a8c0086ffb5/feeling-lost-but-still-learning-my-web-dev-journey-so-far-4g8o</link>
      <guid>https://forem.com/lord_potato_c8a8c0086ffb5/feeling-lost-but-still-learning-my-web-dev-journey-so-far-4g8o</guid>
      <description>&lt;p&gt;✨ Burnout? Imposter Syndrome? Screen headaches?&lt;br&gt;
Here’s a raw and real take on trying to balance learning web dev, working full-time, and just trying to not lose it while exploring open source too.&lt;/p&gt;

&lt;p&gt;📚 Built projects, felt lost, found small wins — and wrote about all of it.&lt;/p&gt;

&lt;p&gt;Read my honest journey here → [&lt;a href="https://medium.com/@svsree2002/feeling-lost-but-still-learning-my-web-dev-journey-so-far-76b038deaa19" rel="noopener noreferrer"&gt;https://medium.com/@svsree2002/feeling-lost-but-still-learning-my-web-dev-journey-so-far-76b038deaa19&lt;/a&gt;]&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>opensource</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
