From e0a0df96de7fc285c874d5430459f6d554d40135 Mon Sep 17 00:00:00 2001 From: Sammy Tran Date: Sun, 14 Apr 2024 15:00:04 -0600 Subject: [PATCH] Added tailwind --- neptune-app/package-lock.json | 3 +++ neptune-app/package.json | 3 +++ neptune-app/tailwind.config.js | 9 +++++++++ 3 files changed, 15 insertions(+) create mode 100644 neptune-app/tailwind.config.js diff --git a/neptune-app/package-lock.json b/neptune-app/package-lock.json index c41b76e..238bed7 100644 --- a/neptune-app/package-lock.json +++ b/neptune-app/package-lock.json @@ -15,6 +15,9 @@ "react-dom": "^18.2.0", "react-scripts": "5.0.1", "web-vitals": "^2.1.4" + }, + "devDependencies": { + "tailwindcss": "^3.4.3" } }, "node_modules/@aashutoshrathi/word-wrap": { diff --git a/neptune-app/package.json b/neptune-app/package.json index 05a0dd3..0c20228 100644 --- a/neptune-app/package.json +++ b/neptune-app/package.json @@ -34,5 +34,8 @@ "last 1 firefox version", "last 1 safari version" ] + }, + "devDependencies": { + "tailwindcss": "^3.4.3" } } diff --git a/neptune-app/tailwind.config.js b/neptune-app/tailwind.config.js new file mode 100644 index 0000000..e5b64f3 --- /dev/null +++ b/neptune-app/tailwind.config.js @@ -0,0 +1,9 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ["./src/**/*.{html,js}"], + theme: { + extend: {}, + }, + plugins: [], +} +