527aeeeced
I used the boilerplate/typescript project as a starting point. This project fetches and renders books that I'm defining in a Contentful CMS that I created.
7 lines
122 B
JavaScript
7 lines
122 B
JavaScript
const tailwindcss = require('tailwindcss')
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
tailwindcss('./tailwind.config.js')
|
|
]
|
|
}
|