Skip to content

Commit

Permalink
chore: add tailwind and postcss configs
Browse files Browse the repository at this point in the history
  • Loading branch information
stfsy committed Jan 2, 2022
1 parent e295eb2 commit 6dfe37a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
7 changes: 7 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
plugins: [
require('tailwindcss/nesting'),
require('tailwindcss'),
require('autoprefixer'),
]
}
12 changes: 12 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module.exports = {
content: [
"./docs/**/*.{vue,js,ts,jsx,tsx,scss}",
],
theme: {
extend: {},
},
plugins: [],
corePlugins: {
preflight: false,
}
}

0 comments on commit 6dfe37a

Please sign in to comment.