Huseyn Guliyev

Results 97 comments of Huseyn Guliyev

being able to load dynamically declared remotes would make this the viable competitor for webpack based MF implementation

Seems this can be closed with latest release. I am able to load modules dynamically

Thanks for reply. In dev mode as it is running in strictmode seems this is default behaviour. Is there way to disable strictmode for webpack devserver?

nuxt is in rc stage now, do we have an update on this yet? It's easy to just add type imports, but that defies whole point of using nuxt. Would...

@danielroe i had the similar issue where I couldn't get serversidecomponents working. Apparently, in contrast to client components serverside components have to be declared exactly as they are named. With...

I have tried the following workaround. It works fine, until I need a field other than number or string, e.g. `Date`. Without date field the approach below works. I tried...

Here is a working nuxt2 and vuetify project. https://github.com/p1pchenk0/nuxt-vuetify-ala-carte

The key change is ``` build: { extractCSS: true, transpile: [/^vuetify/], babel: { plugins: [ [ "transform-imports", { vuetify: { transform: "vuetify/es5/components/${member}", preventFullImport: true } } ] ] }, ```

I have found a workaround. I had to use the following to let it use alternative index.html. ```js async viteFinal(config, { configType }) { const rollupOptions = { rollupOptions: {...

@IanVS I wish I could explain what is happening. For some reason storybook during start was picking app libraries which were called from app's main.ts (the one which is referenced...