Sakina

Results 254 comments of Sakina

I tried webstorm, it works well, our code is growing fast, VSCode is still my favorite IDE, I hope the VSCode team can fix it.

Yes, in a real project in our production env, there is a part of the `library` where over 1000 files import more than 10 library files each. This creates a...

如果不小心升级到了 v138 最新版本,在 flags 里先回复 v137 的选项,再 disabled 三个对 manifest v2 的禁用即可苟活一下。

### v140 之后可通过添加启动参数来启用 v2 manifest 插件,以下为 macOS 操作方式 1. 打开 Automator.app 2. 选择 “新建文稿” → “应用程序” → 搜索 shell 新建一个启动命令行 3. 填写: ```shell /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --disable-features=ExtensionManifestV2Unsupported,ExtensionManifestV2Disabled ``` 4. cmd...

有不配 root 失效的例子吗,以前都是不配 root 的。

IMO We should always preserve these Symbols, otherwise this becomes a breaking change for a few reasons. 1. Across iframes with different JS runtimes, Symbols are used for cross iframe...

```ts // .fatherrc.ts export default defineConfig({ umd: { chainWebpack(memo, { webpack }) { const RULES = ['src', 'jsx-ts-tsx', 'extra-src'] RULES.forEach(rule => { memo.module.rule(rule).use('babel-loader').tap((options) => { options.presets[0][1].presetEnv.loose = true; return options...

`routePath` 里面是可能含有 `*` ,`*` 作为 url 肯定是不对的。

可以自己 `chainWebpack` 配,无需增加到框架里。

`createServerRoutes` 这个方法貌似在 umi 中没有地方使用了,是给 bigfish 用的么。