description |
---|
The following pages attempt to give you all you need to get started building on top of Pie Network products. If you have any questions, please visit the PieDAO Discord or the Forums. |
{% hint style="info" %} This section of the docs is evolving rapidly. Please consider visiting us on Discord or the Forums if you want to get involved in PieDAO development. {% endhint %}
All PieDAO NPM packages are publishing on npmjs.com under the @pie-dao
prefix. You can view the most current ones here.
This package provides the tailwindcss plugin used by the PieDAO frontend-template repo. Including it in your tailwindcss configuration will give you all of the base styles and classes discussed later on in the styling section.
yarn add @pie-dao/tailwind
`/* tailwind.config.js */
const piedao = require('@pie-dao/tailwind');
module.exports = {
theme: {},
variants: {},
plugins: [piedao],
}`
``