mirror of
https://github.com/docker/docs.git
synced 2026-03-27 06:18:55 +07:00
Improves build time compared to using tailwind content globs Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
9 lines
194 B
JavaScript
9 lines
194 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
"postcss-import": {},
|
|
"tailwindcss/nesting": {},
|
|
tailwindcss: {},
|
|
...(process.env.NODE_ENV === "production" ? { autoprefixer: {} } : {}),
|
|
},
|
|
};
|