<?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: Maxime Bignolet</title>
    <description>The latest articles on Forem by Maxime Bignolet (@maxxbgt).</description>
    <link>https://forem.com/maxxbgt</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%2F3711443%2F337e65a5-11e7-4125-bd0f-2b617ac15d79.jpg</url>
      <title>Forem: Maxime Bignolet</title>
      <link>https://forem.com/maxxbgt</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/maxxbgt"/>
    <language>en</language>
    <item>
      <title>I Built a Nuxt 4 Starter Template I'd Actually Use in Production</title>
      <dc:creator>Maxime Bignolet</dc:creator>
      <pubDate>Thu, 05 Feb 2026 08:30:31 +0000</pubDate>
      <link>https://forem.com/maxxbgt/i-built-a-nuxt-4-starter-template-id-actually-use-in-production-fe6</link>
      <guid>https://forem.com/maxxbgt/i-built-a-nuxt-4-starter-template-id-actually-use-in-production-fe6</guid>
      <description>&lt;p&gt;After a year of building Nuxt apps professionally at a French tech company, I noticed I was repeating the same setup for every project. So I built a starter template that I actually use in real work—and I'm sharing it today.&lt;/p&gt;

&lt;p&gt;🌐 &lt;strong&gt;&lt;a href="https://nuxt-starter-template-seven.vercel.app/" rel="noopener noreferrer"&gt;Live Demo&lt;/a&gt;&lt;/strong&gt; • 📦 &lt;strong&gt;&lt;a href="https://github.com/MaximeBignolet/nuxt-starter-template" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem with Starter Templates
&lt;/h2&gt;

&lt;p&gt;Most templates fall into two categories:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Too minimal&lt;/strong&gt; – Just the framework, you configure everything yourself&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Too bloated&lt;/strong&gt; – 50 dependencies, complex folder structures, half you'll delete anyway&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;What I needed was &lt;strong&gt;the middle ground&lt;/strong&gt;: production-ready without the bloat.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's Inside
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;✅ Nuxt 4 &lt;span class="o"&gt;(&lt;/span&gt;latest stable&lt;span class="o"&gt;)&lt;/span&gt;
✅ TypeScript &lt;span class="o"&gt;(&lt;/span&gt;strict mode enabled&lt;span class="o"&gt;)&lt;/span&gt;
✅ TailwindCSS 4 &lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;yes&lt;/span&gt;, already!&lt;span class="o"&gt;)&lt;/span&gt;
✅ Vite &lt;span class="o"&gt;(&lt;/span&gt;lightning-fast HMR&lt;span class="o"&gt;)&lt;/span&gt;
✅ ESLint &lt;span class="o"&gt;(&lt;/span&gt;configured but not annoying&lt;span class="o"&gt;)&lt;/span&gt;
✅ Clean folder structure
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Clean Folder Structure
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;app/
├── assets/          # Global styles, images
├── components/      # Vue components (auto-imported)
├── composables/     # Reusable logic
├── layouts/         # App layouts
├── pages/           # File-based routing
└── utils/           # Helper functions
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No &lt;code&gt;src/&lt;/code&gt; directory. Nuxt 4's new structure is cleaner without it.&lt;/p&gt;




&lt;h2&gt;
  
  
  ESLint Configuration That Works
&lt;/h2&gt;

&lt;p&gt;Most templates either skip ESLint entirely or configure it so strictly that you fight with it constantly.&lt;/p&gt;

&lt;p&gt;My sweet spot:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// eslint.config.mjs&lt;/span&gt;
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
  &lt;span class="p"&gt;...&lt;/span&gt;&lt;span class="nx"&gt;nuxtEslintConfig&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="na"&gt;rules&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;vue/multi-word-component-names&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;off&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="c1"&gt;// Too annoying&lt;/span&gt;
      &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;@typescript-eslint/no-unused-vars&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;warn&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="c1"&gt;// Warning, not error&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Catches real bugs without yelling about style preferences.&lt;/p&gt;




&lt;h2&gt;
  
  
  Real-World Numbers
&lt;/h2&gt;

&lt;p&gt;From actual production use:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Metric&lt;/th&gt;
&lt;th&gt;Result&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;⚡ Dev server start&lt;/td&gt;
&lt;td&gt;~2 seconds&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;📦 Build time&lt;/td&gt;
&lt;td&gt;~30 seconds&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;💾 Bundle size&lt;/td&gt;
&lt;td&gt;~85KB gzipped&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  What I've Built With It
&lt;/h2&gt;

&lt;p&gt;I've used this exact template to bootstrap:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🚀 A SaaS dashboard (added auth + Stripe)&lt;/li&gt;
&lt;li&gt;📄 A marketing website (added Nuxt Content)&lt;/li&gt;
&lt;li&gt;🔧 An internal tool (added API integration)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each time: &lt;strong&gt;working, type-safe, styled app in under an hour&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Quick Start
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Use GitHub's Template Feature (Recommended)
&lt;/h3&gt;

&lt;p&gt;Click "Use this template" on the &lt;a href="https://github.com/MaximeBignolet/nuxt-starter-template/generate" rel="noopener noreferrer"&gt;GitHub repo&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Or Clone Manually
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/MaximeBignolet/nuxt-starter-template.git
&lt;span class="nb"&gt;cd &lt;/span&gt;nuxt-starter-template
npm &lt;span class="nb"&gt;install
&lt;/span&gt;npm run dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Visit &lt;code&gt;http://localhost:3000&lt;/code&gt; and you're ready to build 🚀&lt;/p&gt;




&lt;h2&gt;
  
  
  Key Lessons Learned
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Lock Critical Dependencies
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"dependencies"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"nuxt"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"^4.0.0"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;  &lt;/span&gt;&lt;span class="err"&gt;//&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;✅&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;Minor&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;updates&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;OK&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"vue"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"3.5.13"&lt;/span&gt;&lt;span class="w"&gt;     &lt;/span&gt;&lt;span class="err"&gt;//&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;❌&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;Locked&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;-&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;breaking&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;changes&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;happen&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Learned this the hard way when a Vue patch broke SSR in production.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Document Auto-Imports
&lt;/h3&gt;

&lt;p&gt;Nuxt auto-imports are magical... until a new dev can't find where &lt;code&gt;useAsyncData&lt;/code&gt; is defined.&lt;/p&gt;

&lt;p&gt;Added a simple comment:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Auto-imported:
- Components from ~/components
- Composables from ~/composables  
- Utils from ~/utils
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Examples &amp;gt; Documentation
&lt;/h3&gt;

&lt;p&gt;Instead of documenting every config option, I included &lt;strong&gt;working examples&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;✅ Page with async data fetching&lt;br&gt;&lt;br&gt;
✅ Reusable API call composable&lt;br&gt;&lt;br&gt;
✅ Layout with header/footer&lt;br&gt;&lt;br&gt;
✅ Component using Tailwind utilities&lt;/p&gt;

&lt;p&gt;Delete what you don't need. Build on what you do.&lt;/p&gt;




&lt;h2&gt;
  
  
  Roadmap
&lt;/h2&gt;

&lt;p&gt;Actively maintaining based on real project needs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;[ ] Dark mode toggle component&lt;/li&gt;
&lt;li&gt;[ ] SEO meta management setup&lt;/li&gt;
&lt;li&gt;[ ] i18n configuration example&lt;/li&gt;
&lt;li&gt;[ ] Testing setup (Vitest + Playwright)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Not planning to add:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CMS integration (too opinionated)&lt;/li&gt;
&lt;li&gt;Backend setup (everyone's different)&lt;/li&gt;
&lt;li&gt;Complex state management (add if needed)&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Try It Yourself
&lt;/h2&gt;

&lt;p&gt;The template is &lt;strong&gt;MIT licensed&lt;/strong&gt; and completely free to use:&lt;/p&gt;

&lt;p&gt;🌐 &lt;strong&gt;&lt;a href="https://nuxt-starter-template-n1ygo5155-maxime-bignolets-projects.vercel.app" rel="noopener noreferrer"&gt;Live Demo&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
📦 &lt;strong&gt;&lt;a href="https://github.com/MaximeBignolet/nuxt-starter-template" rel="noopener noreferrer"&gt;GitHub Repository&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
⭐ &lt;strong&gt;&lt;a href="https://github.com/MaximeBignolet/nuxt-starter-template" rel="noopener noreferrer"&gt;Give it a star&lt;/a&gt;&lt;/strong&gt; if you find it useful!&lt;/p&gt;




&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The best starter template is the one you'd actually use.&lt;/strong&gt; Not the one with the most GitHub stars or the most features—the one that gets you from idea to working app the fastest.&lt;/p&gt;

&lt;p&gt;If you're starting a new Nuxt project and want something production-ready without the bloat, give it a try.&lt;/p&gt;




&lt;h2&gt;
  
  
  Discussion
&lt;/h2&gt;

&lt;p&gt;What's your experience with starter templates? Do you prefer minimal setups or feature-rich boilerplates? What features would you add to this template?&lt;/p&gt;

&lt;p&gt;Drop a comment below! 👇&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Connect with me:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🌐 &lt;a href="https://maximedev.fr" rel="noopener noreferrer"&gt;Portfolio&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;💼 &lt;a href="https://www.linkedin.com/in/maxime-bignolet-8228bb219/" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🐙 &lt;a href="https://github.com/MaximeBignolet" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Happy coding! 🚀&lt;/p&gt;

</description>
      <category>nuxt</category>
      <category>vue</category>
      <category>typescript</category>
      <category>webdev</category>
    </item>
    <item>
      <title>I built a tool to spot real product pain without reading forums for hours</title>
      <dc:creator>Maxime Bignolet</dc:creator>
      <pubDate>Wed, 14 Jan 2026 18:06:35 +0000</pubDate>
      <link>https://forem.com/maxxbgt/i-built-a-tool-to-spot-real-product-pain-without-reading-forums-for-hours-2456</link>
      <guid>https://forem.com/maxxbgt/i-built-a-tool-to-spot-real-product-pain-without-reading-forums-for-hours-2456</guid>
      <description>&lt;p&gt;Like a lot of founders, I kept starting projects from vague ideas, Twitter vibes, or half-remembered complaints.&lt;/p&gt;

&lt;p&gt;The problem wasn’t a lack of ideas — it was signal extraction.&lt;/p&gt;

&lt;p&gt;Reading forums manually is slow, noisy, and mentally draining:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;- 90% of posts are advice, opinions, or meta discussions

- the real pain is buried in a few frustrated sentences

- after 30 minutes, you don’t know what actually repeats
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;So I built I Wish There Was.&lt;/p&gt;

&lt;p&gt;It scans recent public forum discussions indexed by search engines, filters for explicit everyday frustrations (time wasted, confusion, friction, costs), and clusters them into clear problem statements.&lt;/p&gt;

&lt;p&gt;For each cluster, it outputs:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;- a concise problem title

- a short summary

- who is affected

- why it hurts

- verbatim user quotes

- a recurrence level (low / medium / high)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Important:&lt;br&gt;
This is not market validation.&lt;br&gt;
It doesn’t tell you what to build or guarantee demand.&lt;/p&gt;

&lt;p&gt;It’s a signal tool — meant to help you decide what’s worth exploring next, instead of starting from a blank page.&lt;/p&gt;

&lt;p&gt;The UX is intentionally simple:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;- pick topics (and optional keywords/sources)

- choose a time range (7 / 14 / 30 days)

- run a scan

- get results in minutes
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Pricing is credit-based (1 free scan, then small one-shot packs).&lt;br&gt;
No subscription — this is a tool you use at a decision moment, not every day.&lt;/p&gt;

&lt;p&gt;I’m sharing this here to get feedback from builders:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;- Does this feel useful in your workflow?

- What would make the output more actionable without turning it into “fake validation”?

- Where would you personally use something like this?
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://i-wish-there-was.com/" rel="noopener noreferrer"&gt;https://i-wish-there-was.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Happy to answer questions or explain how it works under the hood.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>showdev</category>
      <category>startup</category>
    </item>
  </channel>
</rss>
