Skip to content

v3.2.8

Compare
Choose a tag to compare
@ClarkXia ClarkXia released this 27 Jul 08:52
· 334 commits to master since this release
19bdfb1
  • 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