mirror of
https://github.com/formbricks/formbricks.git
synced 2026-03-16 23:53:36 -05:00
14 lines
432 B
JavaScript
14 lines
432 B
JavaScript
// If you want to use other PostCSS plugins, see the following:
|
|
// https://tailwindcss.com/docs/using-with-preprocessors
|
|
|
|
const config = require("@formbricks/tailwind-config/tailwind.config.js");
|
|
|
|
module.exports = {
|
|
plugins: {
|
|
// Specifying the config is not necessary in most cases, but it is included
|
|
// here to share the same config across the entire monorepo
|
|
tailwindcss: { config },
|
|
autoprefixer: {},
|
|
},
|
|
};
|