github alibaba/ice @ice/app@3.3.3
v3.3.3

latest releases: @ice/rspack-config@1.1.9, @ice/app@3.4.11, @ice/plugin-stream-error@1.0.1...
12 months ago
  • Support config css modules name by user config #6289
import { defineConfig } from '@ice/app';

export default defineConfig(() => ({
  cssModules: {
    localIdentName: '[hash:8]',
  },
}));
  • New plugin deal with stream error, it will fallback to CSR automatically when steam error #6530
import { defineConfig } from '@ice/app';
import streamError from '@ice/plugin-stream-error';

export default defineConfig(() => ({
  plugins: [
    streamError(),
  ],
}));
  • Compat with the build case which do not need document #6536

Don't miss a new ice release

NewReleases is sending notifications on new releases.