Victor Neves

Results 17 comments of Victor Neves

If I may suggest I think the next one should be JSON code editor since for now the auto-props don't show the initial data and we also aren't able to...

@kouts @brzezinskimarcin @Demivan for me it's working ![image](https://user-images.githubusercontent.com/17341789/155200369-13ac927d-838d-4c07-81d8-ec75e21a571e.png) This is what I have on vite.config ``` test: { /* for example, use global to avoid globals imports (describe, test, expect):...

@kouts @brzezinskimarcin @Demivan Sorry, but I didn't pay real attention to the results. The **.vue files aren't included on the list 😞 Need to check Peeky base code, because it...

Looking to Peeky code it's using `coverageOptions` key instead of coverage ``` export default defineConfig({ coverageOptions: { reportsDirectory: './coverage', excludeNodeModules: true, exclude: [ 'coverage/**', 'packages/*/test{,s}/**', '**/*.d.ts', 'cypress/**', 'test{,s}/**', 'test{,-*}.{js,cjs,mjs,ts,tsx,jsx}', '**/*{.,-}test.{js,cjs,mjs,ts,tsx,jsx}',...

@sapphi-red both generate hashes when running the build. If your product it's a SPA you can try to use a service worker together with an interceptor (if you use Axios)...

@IPWright83 https://dev.to/voodu/vue-3-pwa-service-worker-12di https://medium.com/@FezVrasta/service-worker-updates-and-error-handling-with-react-1a3730800e6a And here is an example that I did some years ago ``` import { register } from "register-service-worker" if (process.env.NODE_ENV === "production") { register(`${process.env.BASE_URL}service-worker.js`, { ready() {...

@IPWright83 by the way, have you tried to access directly the file that is displayed on the console that wasn't possible to import? I'm asking because on our project we...

@IPWright83 Meanwhile, I also saw someone handling the problem this way ``` router.onError((error, to) => { if (error.message.includes('Failed to fetch dynamically imported module')) { window.location = to.fullPath } }) ```

@yakobe in my case, it's not about outdated chunks. I'm getting this with existing files that is even worst to figure out the problem and try to fix it, especially...

@lmiller1990 according to some of the descriptions I saw on https://github.com/cypress-io/cypress/issues/25913 it looks more or less like the problem that I have where we aren't able to reproduce it locally....