那吒
那吒
I am trying to use `` between `` like this: ```html hello world. ``` It seems not working. What should i do ?
## 背景 项目使用的版本为 sass: 1.32.13,不支持 math.div 能新语法。而对于传统的 `/` 语法则会进行 warn 处理。 1. sass 在 [1.43.0](https://sass-lang.com/documentation/js-api/modules/Logger) 支持 log 等级,可避免命令行出现大量 warn 输出信息
- build-plugin-stark-module support ice.js 2.x Closes https://github.com/ice-lab/icestark/issues/512 - [x] webpack mode ❌ vite mode - 暂不支持
## 背景 微应用存在加载一些三方脚本,这些脚本不是核心应用资源。当前这些资源加载失败后会直接导致应用加载失败。 ## 方案 对于 entry 方式加载的脚本资源,若存在 [async](https://javascript.info/script-async-defer),则不阻塞后续脚本执行,并不影响后续脚本执行、页面渲染。 对于 url 配置的脚本资源,则扩展 [url](https://micro-frontends.ice.work/docs/api/ice-stark#url) 的配置如下: ```jsx ``` ## Relate issue #585
文档结构梳理
+ 文档 + 关于 + 快速开始 + 概念 + 主应用 + 微应用 + 微模块 + 它是如何工作的 + 主应用接入 + React + Vue + 微应用接入 + React + Vue + CRA...
- [ ] Add page to explain how router matches between micro-apps. - [ ] Add built-in examples. - [ ] How to realize a mulit-tabs app with icestark, closes...
- [x] Exposes `injection` argument of sandbox, closes #576 - [x] Cached logic recover from 1.x, closes #389
## Background There is no other way to pass the `injection` argument to a sandbox. It may go like this: ```js new Sandbox({ injection: { a: 'a' }, // other...
## 背景 微前端在样式隔离方案上没有一些比较完备的方案。考虑样式的种类,一个微前端应用通常包含下面几类: - 框架应用内部样式 - 子应用内部样式 - 三方组件库样式,比如 Fusion、AntD(版本冲突) - CSS resets(通常包含在三方组件库中)、Utility classes 通常我们认为最佳的使用方式是:所有共享的样式存在一份,其他内部样式 scoped。但实际情况下,业务开发需要精妙的编排,才能使共享样式独立保持一份。因此在之前的设计中,icestark 做如下推荐: - 内部样式 scoped - 框架应用的组件样式使用 prefix 能力,比如 Antd 的 [prefixCls](https://ant.design/components/config-provider-cn/#API)、Fusion 的 [css-prefix](https://ice.work/docs/plugin/list/fusion#%E4%BF%AE%E6%94%B9-prefix) ##...
## 背景 存在一些场景,子应用需要同时作为主应用,来挂载其他应用。