Skip to content

2.1.0

Latest
Compare
Choose a tag to compare
@SyMind SyMind released this 05 Aug 14:24
· 24 commits to main since this release

现在完整支持 Taro 的 postcss 配置 https://taro-docs.jd.com/docs/config-detail#h5postcss

增加了 postcss 本地插件的使用示例 https://github.com/NervJS/tarojs-plugin-ssr/tree/main/examples/with-postcss

插件增加 extraFiles 配置项,配置在插件编译阶段需要复制到 Next.js 中的附加文件。
作为示例,比如你本地编写的 postcss 插件目录:

const config = {
    plugins: [
        ['tarojs-plugin-platform-nextjs', {
            extraFiles: [
                'postcss-plugins/**'
            ]
        }]
    ]
}