Skip to content

Commit 171ad0b

Browse files
committed
integrations: simplify and make parsing data safer
1 parent a4704c2 commit 171ad0b

File tree

12 files changed

+327
-124
lines changed

12 files changed

+327
-124
lines changed

docusaurus.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ const config = {
3737
"./src/plugins/ngrok-parse-integrations",
3838
"@stackql/docusaurus-plugin-hubspot",
3939
"@docusaurus/theme-mermaid",
40+
"./src/plugins/tailwindcss",
4041
],
4142
headTags: [
4243
{

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@
4747
"@docusaurus/types": "2.4.3",
4848
"@types/react": "17.0.69",
4949
"@types/react-dom": "17.0.22",
50-
"prettier": "3.0.3"
50+
"autoprefixer": "10.4.16",
51+
"postcss": "8.4.31",
52+
"prettier": "3.0.3",
53+
"tailwindcss": "3.3.5"
5154
},
5255
"browserslist": {
5356
"production": [

pnpm-lock.yaml

Lines changed: 187 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

postcss.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
};

0 commit comments

Comments
 (0)