summaryrefslogtreecommitdiff
path: root/examples/tailwindcss
diff options
context:
space:
mode:
Diffstat (limited to 'examples/tailwindcss')
-rw-r--r--examples/tailwindcss/.gitignore2
-rw-r--r--examples/tailwindcss/README.md2
-rw-r--r--examples/tailwindcss/src/components/Button.astro (renamed from examples/tailwindcss/astro/components/Button.astro)0
-rw-r--r--examples/tailwindcss/src/pages/index.astro (renamed from examples/tailwindcss/astro/pages/index.astro)0
-rw-r--r--examples/tailwindcss/tailwind.config.js2
5 files changed, 3 insertions, 3 deletions
diff --git a/examples/tailwindcss/.gitignore b/examples/tailwindcss/.gitignore
index ca35be08d..1521c8b76 100644
--- a/examples/tailwindcss/.gitignore
+++ b/examples/tailwindcss/.gitignore
@@ -1 +1 @@
-_site
+dist
diff --git a/examples/tailwindcss/README.md b/examples/tailwindcss/README.md
index e16be0504..dd96562bd 100644
--- a/examples/tailwindcss/README.md
+++ b/examples/tailwindcss/README.md
@@ -20,4 +20,4 @@ Preview at `http://localhost:3000`
npm build
```
-Will output static site at `./_site`
+Will output static site at `./dist`
diff --git a/examples/tailwindcss/astro/components/Button.astro b/examples/tailwindcss/src/components/Button.astro
index ac13d7a49..ac13d7a49 100644
--- a/examples/tailwindcss/astro/components/Button.astro
+++ b/examples/tailwindcss/src/components/Button.astro
diff --git a/examples/tailwindcss/astro/pages/index.astro b/examples/tailwindcss/src/pages/index.astro
index e062f1f5b..e062f1f5b 100644
--- a/examples/tailwindcss/astro/pages/index.astro
+++ b/examples/tailwindcss/src/pages/index.astro
diff --git a/examples/tailwindcss/tailwind.config.js b/examples/tailwindcss/tailwind.config.js
index 279237052..9b380cc46 100644
--- a/examples/tailwindcss/tailwind.config.js
+++ b/examples/tailwindcss/tailwind.config.js
@@ -1,4 +1,4 @@
module.exports = {
mode: 'jit',
- purge: ['./public/**/*.html', './astro/**/*.{astro,js,jsx,ts,tsx,vue}'],
+ purge: ['./public/**/*.html', './src/**/*.{astro,js,jsx,ts,tsx,vue}'],
};