The PostCSS plugin has moved to a separate package

Hi there, I've just started a fresh template following all instructions. After running wasp start and visiting localhost:3000 I get the following error. I've review stackoverflow and also tried a fix from perplextiy to no avail. Would appreciate any kind of assistance. I'm running this on my mac and using cursor with wasp 0.15.2. Thank you
No description
3 Replies
kapa.ai
kapa.ai5d ago
Hi @thozithecreator. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- I apologize, but the knowledge sources provided don't contain specific information about the error message "The PostCSS plugin has moved to a separate package" or any related issues in Wasp 0.15.2. Without more context or relevant information in the given sources, I can't provide a definitive answer to your specific problem. However, based on the available information, I can suggest a few general troubleshooting steps that might help: 1. Make sure you have the correct configuration files for Tailwind CSS. As mentioned in the CSS Frameworks documentation, you need to add two config files to the root directory of your project: - tailwind.config.cjs - postcss.config.cjs Ensure these files are present and correctly configured. 2. If you've just added these files, try running wasp clean and then wasp start again. Sometimes Wasp needs to be restarted to pick up changes in configuration files. 3. Double-check that you're using the .cjs extension for these config files, not .js. Wasp specifically looks for the .cjs extension. 4. Make sure you've imported Tailwind into your CSS file, typically Main.css:
@tailwind base;
@tailwind components;
@tailwind utilities;

@tailwind base;
@tailwind components;
@tailwind utilities;

If these steps don't resolve your issue, you might want to share more details about your project structure, configuration files, and the full error message you're seeing. This would help in providing a more accurate solution to your specific problem. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @thozithecreator, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
miho
miho5d ago
Could you please try this: https://ptb.discord.com/channels/686873244791210014/1331882505434828821/1331935541549072446 We'll update the Open Saas template soon @Vinny (@Wasp) so this problem should go away
thozithecreator
thozithecreatorOP5d ago
Thank you will give that a shot! That worked perfectly. Thanks again @miho

Did you find this page helpful?