diff --git a/.idea/vcs.xml b/.idea/vcs.xml
index b80c2ec..35eb1dd 100644
--- a/.idea/vcs.xml
+++ b/.idea/vcs.xml
@@ -2,6 +2,5 @@
-
\ No newline at end of file
diff --git a/README.md b/README.md
index 9437e09..4aa975a 100644
--- a/README.md
+++ b/README.md
@@ -25,6 +25,10 @@ Simply run the following command to install it:
cargo install trunk wasm-bindgen-cli
```
+```bash
+npm i -g tailwindcss
+```
+
That's it, we're done!
### Running
@@ -55,7 +59,7 @@ There are a few things you have to adjust when adopting this template.
### Remove example code
The code in [src/main.rs](src/main.rs) specific to the example is limited to only the `view` method.
-There is, however, a fair bit of Sass in [index.scss](index.scss) you can remove.
+There is, however, a fair bit of Sass in [index.scss](index.css) you can remove.
### Update metadata
diff --git a/Trunk.toml b/Trunk.toml
new file mode 100644
index 0000000..7c7a3fe
--- /dev/null
+++ b/Trunk.toml
@@ -0,0 +1,8 @@
+[build]
+target = "index.html"
+dist = "dist"
+
+[[hooks]]
+stage = "build"
+command = "sh"
+command_arguments = ["-c", "npx tailwindcss -i index.css -o $TRUNK_STAGING_DIR/tailwind.css --minify"]
\ No newline at end of file
diff --git a/index.css b/index.css
new file mode 100644
index 0000000..bd6213e
--- /dev/null
+++ b/index.css
@@ -0,0 +1,3 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
\ No newline at end of file
diff --git a/index.html b/index.html
index 4d13cf1..91114d2 100644
--- a/index.html
+++ b/index.html
@@ -3,6 +3,8 @@