Edison Guo

Results 22 comments of Edison Guo

[源码](https://github.com/Cap32/wxapp-webpack-plugin/blob/60603e6f834750d3063ee9676b04facf7ee32365/src/index.js#L285)里有这样的逻辑 ```javascript if (relativeComponent.indexOf('plugin://') === 0) continue; ``` 所以可以采用如下临时解决方案 1 修改 .json ```json { "usingComponents": { "mp-searchbar": "plugin://weui-miniprogram/searchbar/searchbar" } } ``` 2 自定义 json loader ```javascript // wx-json-loader.js import *...

any progress?

Any command to download binaries only?

@DVGY could you please provide a sample docx and describe the way you want it to be?

@nfMalde For v13, a workaround with minimum cost (bundle size) would be: `main.ts` ```typescript import 'reflect-metadata'; // !! SHOULD BE KEPT IN FIRST LINE !! import '@angular/compiler'; // !! TO...

For angular v13 without injecting 'Compiler' ```adhoc.type.ts``` ```typescript @Component({ selector: '[dg-adhoc-html]', template: ``, changeDetection: ChangeDetectionStrategy.OnPush, }) export class DgAdhocComponent implements OnChanges, OnInit, OnDestroy { constructor(private vcr: ViewContainerRef) { } @Input('dg-adhoc-html')...

@joseluratm ```aot``` have to be disabled for now. The change of```tsconfig.json``` is not required. ```json ... "angularCompilerOptions": { ... "compilationMode": "partial" } ``` The complete component definition should be: ```typescript...

> > @joseluratm `aot` have to be disabled for now. > > The change of`tsconfig.json` is not required. > > ```json > > ... > > "angularCompilerOptions": { > >...

I have set a specific IP address for the `host`, but it defaults to `127.0.0.1` To resolve this issue: * Set the `useHostName` to `true`. After upgrading Chrome to version...