Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Feb 8, 2025
1 parent e334d35 commit b575439
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions packages/react-server/examples/tailwind-v4/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import type React from "react";
import "./styles.js";
// import "./styles.css";

export default function Layout(props: React.PropsWithChildren) {
return (
Expand Down
1 change: 1 addition & 0 deletions packages/react-server/examples/tailwind-v4/app/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import "tailwindcss"
2 changes: 2 additions & 0 deletions packages/react-server/examples/tailwind-v4/app/styles.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"use client";
import "./styles.css";
7 changes: 2 additions & 5 deletions packages/react-server/examples/tailwind-v4/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import tailwindcss from "@tailwindcss/vite";
import next from "next/vite";
import { defineConfig } from "vite";
import tailwindcss from '@tailwindcss/vite'

export default defineConfig({
plugins: [
next(),
tailwindcss(),
],
plugins: [next(), tailwindcss()],
});

0 comments on commit b575439

Please sign in to comment.