João Victor Lopes
João Victor Lopes
> Thanks for the effort, however this only changes the order of expansion from `% -> $` to `$ -> %` and that's not a proper solution as I wrote...
my idea would be the following, _looking at the code_: ```ts function formatTitle(template: string, items: any[], idx: number) { // Step 1: Replace escaped percent signs template = template.replace(/%%/g, '__vitest_escaped_%__')...
> Please feel free to update the code and let's see the test case 🙂 I uploaded the code I commented on. Regarding the reporter tests, I inserted it into...
same issue here my vite.config.ts host ```ts import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; import { federation } from '@module-federation/vite'; export default defineConfig({ plugins: [ react(), federation({...
@pcfreak30 Do you have any examples of this approach?
> I am facing this issue as well. Loading a Vite module into an RsBuild host is not currently working Could you share the federation module configuration codes in both...