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

latest releases: @ice/app@3.4.12, @ice/plugin-stream-error@1.0.2, @ice/webpack-config@1.1.16...
13 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.