-
v1.4.0 Stable
released this
2024-07-25 16:52:51 +08:00 | 4 commits to master since this release- 修复线程创建逻辑,避免页面数过少时线程过剩, 无法正常释放的问题;
- 调整编译配置处理;
- 增加插件的支持, 可通过插件, 对
css/js
的编译结果, 做进一步处理; - 增加
define
配置的支持(同vite
);
// fite.config.js import autoprefixer from 'fite-plugin-autoprefixer' export default { ..., plugin: [autoprefixer()], define: { __CODE_VERSION__: JSON.stringify('1.0.0'), ... } // 业务代码 const version = __CODE_VERSION__ fetch('/foo/bar', { headers: { version } })
Downloads
-
v1.1.12 Stable
released this
2023-06-25 12:27:59 +08:00 | 14 commits to master since this release- 修复单页应用的文件扫描
- 优化小项目(文件数小于线程数的10倍)的编译, 小项目不再开启多线程编译。
- 修复dev环境的一处笔误
- 优化js解析输出
Downloads
-
v1.1.11 Stable
released this
2023-06-16 14:26:09 +08:00 | 24 commits to master since this release- 支持多线程编译(默认启用), 编译速度提升1倍左右(具体受电脑CPU和硬盘的性能影响)。
- 其他一些小细节优化
Downloads
-
v1.1.10 Stable
released this
2023-06-13 17:45:12 +08:00 | 32 commits to master since this release- 开发模式, 开启
https
时, 内部使用http2
, 多文件请求更为流畅。 - 开发模式增加
gzip: true/false
配置(默认为false
), 一个没什么用的功能, 纯粹是为了让你在开发时可以了解一下压缩前后的差异。该配置对生产模式没有影响。 - 优化多页应用的首页样式渲染。
- 修复有
iframe
嵌套的多页应用的场景的热更新失效的bug。
Downloads
- 开发模式, 开启
-
v1.1.9 Stable
released this
2023-06-08 16:03:05 +08:00 | 37 commits to master since this release- 修复
--no-clean
参数 - 修复vue文件中引入样式文件报错的bug
Downloads
- 修复