summaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/postcss.config.js
diff options
context:
space:
mode:
authorGravatar Jonathan Neal <jonathantneal@hotmail.com> 2021-12-22 16:11:05 -0500
committerGravatar GitHub <noreply@github.com> 2021-12-22 16:11:05 -0500
commit6ddd7678ffb6598ae6e263706813cb5e94535f02 (patch)
treed4b45f7590b59c3574bd6593b17d8066f71007c6 /examples/with-tailwindcss/postcss.config.js
parent305ce4182fbe89abcfb88008ddce178bd8863b6a (diff)
downloadastro-6ddd7678ffb6598ae6e263706813cb5e94535f02.tar.gz
astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.tar.zst
astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.zip
Use accessible indentation (#2253)
Diffstat (limited to 'examples/with-tailwindcss/postcss.config.js')
-rw-r--r--examples/with-tailwindcss/postcss.config.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/with-tailwindcss/postcss.config.js b/examples/with-tailwindcss/postcss.config.js
index 7cffbeb55..c3a002bfe 100644
--- a/examples/with-tailwindcss/postcss.config.js
+++ b/examples/with-tailwindcss/postcss.config.js
@@ -1,10 +1,10 @@
const path = require('path');
module.exports = {
- plugins: {
- tailwindcss: {
- config: path.join(__dirname, 'tailwind.config.js'), // update this if your path differs!
- },
- autoprefixer: {},
- },
+ plugins: {
+ tailwindcss: {
+ config: path.join(__dirname, 'tailwind.config.js'), // update this if your path differs!
+ },
+ autoprefixer: {},
+ },
};