Jump to content

When using AI you are always one step ahead!*


bernhard
 Share

Recommended Posts

It's shocking to ask just the basics. Try:

Quote

what's the latest version of these frameworks/libraries you know off?

- nextjs
- astrojs
- processwire
- tailwindcss

and whats your name, version, and release date?
what llm are you using - name, version, and release date?

 

Link to comment
Share on other sites

For TailwindCSS v 4.x I asked Grok (or maybe even Cascade itself - not sure) to read the migration/upgrade guide and compress it down to the bare minimum. I put that file into my `docs` folder, added it to the context and let Cascade do its work.

Besides those changes, TailwindCSS didn't change that much so most of it worked as before.

I also added a new base tailwindcss.css file with the new config syntax and changes and when necessary I mention that there is no need to setup TailwindCSS again. Works pretty well.

/*file: `/site/templates/src/tailwind.css` */
@import 'tailwindcss';

/* PLUGINS */
/* @plugin "@tailwindcss/typography"; */
/* @plugin "@tailwindcss/forms"; */

/* CUSTOM */
@theme {
  /* 480px */
  --breakpoint-xs: 30rem;
}

/* SOURCE */
@source "../../templates/**/*.html";
@source "../../templates/**/*.html.twig";
@source "../../templates/**/*.js";
@source "../../templates/**/*.latte";
@source "../../templates/**/*.php";
@source "../../templates/**/*.twig";

/* SOURCE NOT */
@source not "../../../node_modules/**/*";

/* ALPINE JS */
[x-cloak] {
  display: none !important;
}

 

  • Like 1
Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...