update deps to latest
This commit is contained in:
parent
11afe8ef72
commit
d4be2dbfc0
18 changed files with 10215 additions and 17803 deletions
15
plugins/tailwind-config.cjs
Normal file
15
plugins/tailwind-config.cjs
Normal file
|
@ -0,0 +1,15 @@
|
|||
function tailwindPlugin(context, options) {
|
||||
return {
|
||||
name: "tailwind-plugin",
|
||||
configurePostCss(postcssOptions) {
|
||||
postcssOptions.plugins = [
|
||||
require("postcss-import"),
|
||||
require("tailwindcss"),
|
||||
require("autoprefixer"),
|
||||
];
|
||||
return postcssOptions;
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
module.exports = tailwindPlugin;
|
Loading…
Add table
Add a link
Reference in a new issue