ice breaker
ice breaker
不好意思,忘记给了,我补上 单体Demo,https://github.com/sonofmagic/mpx-project-error monorepo Demo, https://github.com/sonofmagic/weapp-tailwindcss-webpack-plugin/tree/dev/demo 的 [mpx-app](https://github.com/sonofmagic/weapp-tailwindcss-webpack-plugin/tree/dev/demo/mpx-app) 项目 两个使用 yarn 都能复现这个问题
Meet the same issue on Github Actions Ci: ```yml name: Build and Push Image to Docker hub on: push: branches: ['main'] workflow_dispatch: jobs: docker: runs-on: ubuntu-latest steps: - name: Checkout...
i have this issue too OS: Win10 Node: 10.14.1 Nuxt:2.9.2 my cache config is almost same as cyberz
看上去这是一个uni app vue3 vite项目,请问这个 center 这个类是如何定义的呢?定义在插件里面,还是定义在普通的 css 里面。 最好能提供一个能复现的 demo,不然这种偶发性问题还是挺难排查的。
我试了一下,暂时没复现,猜想不知道会不会和这个有关系: https://tailwindcss.com/docs/using-with-preprocessors#build-time-imports 我看教程里的 @layer 都是定义在: ```css @tailwind base; @tailwind components; @tailwind utilities; ``` 下方的 https://tailwindcss.com/docs/adding-custom-styles#adding-component-classes
那我推荐你注册这样一个 `tailwindcss/plugin` ```js // tailwind.config.js const plugin = require('tailwindcss/plugin') module.exports = { plugins: [ plugin(function ({ addUtilities }) { addUtilities({ '.center': { display: 'flex', 'align-items': 'center', 'justify-content': 'center' } })...
有可以稳定复现的 repo 吗,或者都写到插件里,不用 @layer utilities 呢,哈哈
长期没有回复,先 Close 了,有复现或者还是遇到这个问题再 reopen 吧
// to cache only root route, use a regular expression /^\/$/ The author shows it in README.md
I use it in my product , it actually works. but i don't know how to get this cache instance maybe we should inject this page-cache into context like context.$pageCache...