Skip to content

v3.4.10

Latest
Compare
Choose a tag to compare
@ClarkXia ClarkXia released this 25 Jul 02:56
· 17 commits to master since this release
1c3f6ae
  • Feat: externals plugin for external dependencies mush easier #6892
import { defineConfig } from '@ice/app';
import externals from '@ice/plugin-externals';

export default defineConfig(() => ({
  plugins: [externals({ preset: 'react' })]
}));

Visit docs for more detail.

  • Feat: support the simple mode of intl solution #6953
import { defineConfig } from '@ice/app';
import intl from '@ice/plugin-intl';

export default defineConfig({
  plugins: [
    // Add intlSolution to remove the dependency of react-intl, API usage is limited in this mode.
    intl({ intlSolution: 'simple' }),
  ],
});

Visit docs for more detail.

  • Feat: unnecessary to compile routes config for server render #6856
  • Feat: support separate bundle for render document #6856
  • Fix: throw error for better debugging #6927
  • Fix: allow decorators-legacy syntax in js file #6935
  • Feat: add es2021 target for rax-compat #6899