Skip to content

Commit

Permalink
fix: import tailwind to main to apply styles (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhu2000 authored Jan 11, 2023
1 parent c08538f commit 8a7022f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import React from "react";
import ReactDOM from "react-dom/client";

import { App } from "./app";
import "./index.css";

ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";

// https://vitejs.dev/config/
export default defineConfig({
Expand Down

0 comments on commit 8a7022f

Please sign in to comment.