Skip to content

v0.11.0

Compare
Choose a tag to compare
@Timeless0911 Timeless0911 released this 21 Jul 11:47
· 61 commits to main since this release
a0b666a

Breaking changes 🚨

redirect.asset

Boolean values are no longer supported for redirect.asset, see the documentation of redirect.asset for more details. (#1119)

Please note the following changes that may require adjustments to your configurations:

export default defineConfig({
  lib: [
    {
      redirect: {
-       asset: true,
+       asset: {
+         path: true,
+         extension: true,
+       },
      },
    },
  ],
});
export default defineConfig({
  lib: [
    {
      redirect: {
-       asset: false,
+       asset: {
+         path: false,
+         extension: false,
+       },
      },
    },
  ],
});

What's Changed

New Features 🎉

  • feat!: support redirect.asset.path and redirect.asset.extension by @Timeless0911 in #1119

Bug Fixes 🐞

  • fix(dts): error log of set declarationDir when dts.build is true by @Timeless0911 in #1120

Other Changes

Full Changelog: v0.10.6...v0.11.0