github alibaba/ice @ice/app@3.2.8
v3.2.8

latest releases: @ice/rspack-config@1.1.9, @ice/app@3.4.11, @ice/plugin-stream-error@1.0.1...
14 months ago
  • Feat: support to remove react-router even route count is greater than 1 #6382
import { defineConfig } from '@ice/app';
// Remove react-router in case of render page like MPA mode.
export default defineConfig(() => ({
  optimization: { disableRouter: true },
}));
  • Feat: enhance dropLogLevel config, support specify array of drop level #6376
import { defineConfig } from '@ice/app';

export default defineConfig(() => ({
  dropLogLevel: ['trace', 'warn'],
}));
  • Feat: support new code splitting strategy page-vendors #6386
import { defineConfig } from '@ice/app';

export default defineConfig(() => ({
  codeSplitting: 'page-vendors',
}));
  • Feat: support function to specify modules with inline style #6380
  • Feat: new API for cache canvas #6367
  • Fix: always external dependencies when get app config #6383
  • Fix: format dataLoader config in PHA plugin #6384
  • Fix: do not compile runtime library such as tslib #6377

Don't miss a new ice release

NewReleases is sending notifications on new releases.