mac开发引入 tailwindcss 库时遇到如下错误:
zsh: no matches found: postcss@^7
可以这样解决:
# 官网给出的命令如下
npm install -D tailwindcss@npm:@tailwindcss/postcss7-compat postcss@\^7 autoprefixer@\^9
# mac的zsh中需要这样,因为错误的 ^ 解析
npm install -D tailwindcss@npm:@tailwindcss/postcss7-compat postcss@^7 autoprefixer@^9
1 条评论
That worked for me!! thanks