Skip to content

v13.2.1

Compare
Choose a tag to compare
@yyx990803 yyx990803 released this 11 Oct 05:01
· 254 commits to main since this release

New Features

  • Support transforming srcset to require calls. (#953)

  • Add cacheBusting option to allow turning off cache busting for source maps. (#987)

  • Adjusted PostCSS configuration API:

postcss.config

  • type: Object

  • default: undefined

    This field allows customizing PostCSS config in the same way as postcss-loader.

    • postcss.config.path

      Specify a path (file or directory) to load the PostCSS config file from.

      postcss: {
        config: {
          path: path.resolve('./src')
        }
      }
    • postcss.config.ctx

      Provide context to PostCSS plugins. See postcss-loader docs for more details.

Fixed