Releases: alibaba/ice
Releases · alibaba/ice
v2.5.0
Improvement
- Feat: support SSR in Vite mode #5045
Enable SSR feature in Vite mode by config "ssr": true
:
{
"vite": true,
+ "ssr": true
}
- Feat: i18n solution for icejs #4969
A new plugin for i18n is provided by ICE Team
, enable i18n by add plugin build-plugin-ice-i18n
{
"plugins": [
[
"build-plugin-ice-i18n", {
"locales": ["en-US", "zh-CN", "nl-NL"],
"defaultLocale": "zh-CN"
}
]
]
}
- Feat: optimize runtime when build #5082
Built-in optimization for bundle size, size will reduce more than 20+KB(minified) .
- Feat: support cli option force to clear cache #5117
npm start -- --force
or
- "start": "icejs start"
+ "start": "icejs start --force"
Bug Fix
v2.4.3
v2.4.2
v2.4.1
v2.4.0
Improvement
- Feat: support output build-speed for each mode (Vite & Webpack) #4977
- Feat: pre-bundle
webpack-dev-server
, webpack loaders and plugins depended by built-in plugins #5019 - Feat: custom component props (props.pageConfig) for each page #4989
- Feat: support IP address when enable https #5011
Bug Fix
v2.3.1
v2.3.0
v2.2.3
Bug Fix
- Fix: support config devServer.historyApiFallback #4963
- Fix: compatible with special chars in html #4962
- Fix: compatible with disable runtime when config mpa #4961
- Fix: match the correct pathname of mock server #4960
- Fix: re-calculate webpack cache id when config disableRuntime #4972
- Fix: refactor miniapp page component #4867
- Fix:
TabBar
resolve path and remove jsx+ forTabBar
render #4957