Brandon Roberts
Brandon Roberts
@alexcibotari I released a patch version with a fix for the flickering `1.6.2-beta.2`. You can set up these providers for client side rendering and syntax highlighting. ```ts providers: [ MarkedSetupService,...
DevCards have been updated
There's a hook in `nitro` for this ```ts analog({ nitro: { hooks: { "prerender:done": ({ prerenderedRoutes }) => { console.log(prerenderedRoutes); } } } }) ```
I've run into a similar issue also in another repo. Did some digging here and it has something to do with the bundling of `rxjs`. If you disable the angular...
Found a workaround. ```ts /// import { defineConfig } from 'vite'; import angular from '@analogjs/vite-plugin-angular'; export default defineConfig(({ mode }) => ({ plugins: [angular()], test: { globals: true, setupFiles: ['src/test-setup.ts'],...
@aelbore not sure if its only needed for rxjs 6.x because our tests are running fine without it on RxJS 7.x. Maybe it surfaced as a result of switching to...
> I ran into this error as well with RxJs 7.x. The workaround works for me. What version of RxJS was it?
> It is 7.8.1, this is the repo https://github.com/ahnpnl/monorepo-multi-apps > > To reproduce: > > * uncomment the workaround in https://github.com/ahnpnl/monorepo-multi-apps/blob/main/apps/ng-app/vitest.config.mts > * At root of the project, run `pnpm...
It also works by just adding `"files": ["test/Framework/testSetup.ts"],` to the `apps/ng-app/tsconfig.json`
> Among these workarounds, do they have the same root cause about switching to ESM like being mentioned above? Yes, using ESM requires the file extensions and unless the angular...