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: [], +} +