diff --git a/neptune-app/package-lock.json b/neptune-app/package-lock.json index e278eb6..9bf4df2 100644 --- a/neptune-app/package-lock.json +++ b/neptune-app/package-lock.json @@ -17,6 +17,7 @@ "web-vitals": "^2.1.4" }, "devDependencies": { + "tailwindcss": "^3.4.3", "@eslint/eslintrc": "^3.0.2", "@eslint/js": "^9.0.0", "eslint": "^8.57.0", diff --git a/neptune-app/package.json b/neptune-app/package.json index ef9f165..7454824 100644 --- a/neptune-app/package.json +++ b/neptune-app/package.json @@ -38,6 +38,7 @@ ] }, "devDependencies": { + "tailwindcss": "^3.4.3", "@eslint/eslintrc": "^3.0.2", "@eslint/js": "^9.0.0", "eslint": "^8.57.0", 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: [], +} +