├── .babelrc ├── .gitignore ├── .npmignore ├── README.md ├── package.json └── src └── gatsby-node.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-plugin-tailwindcss/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /gatsby-node.js -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-plugin-tailwindcss/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-plugin-tailwindcss/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-plugin-tailwindcss/HEAD/package.json -------------------------------------------------------------------------------- /src/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-plugin-tailwindcss/HEAD/src/gatsby-node.js --------------------------------------------------------------------------------