#Cannot find module 'tailwindcssforms'

3 messages · Page 1 of 1 (latest)

stoic oracle
#

Trying to implement tailwind forms but cant seem to find the module

Tailwind

module.exports = {
  content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
  theme: {
    extend: {},
  },
  plugins: [require("@tailwindcss/forms")],
};

Astro Config

import { defineConfig } from "astro/config";
import react from "@astrojs/react";
import vue from "@astrojs/vue";
import svelte from "@astrojs/svelte";

import tailwind from "@astrojs/tailwind";

// https://astro.build/config
export default defineConfig({
  integrations: [
    react(),
    vue(),
    svelte(),
    tailwind({
      // Example: Provide a custom path to a Tailwind config file
      config: { path: "./tailwind.config.cjs" },
    }),
  ],
});
surreal agate
#

@stoic oracle please look at this: