Jeff Fasulkey
Jeff Fasulkey
@bmulholland Thanks for the suggestion, I have been pulling my hair out for the past couple days trying to solve this one until i found this thread. I ended up...
Not sure if you are using Apollo, but the Apollo chrome extension will also intercept requests to mirage. It includes a playground that works quite well.
@joshacheson are you able to share an implementation of your work around?
I am getting the same sort of error while trying to run storybook ``` vue 2.7.10 vue-loader 15.10.0 @vue/cli-service: 5.0.8 ``` ``` ModuleBuildError: Module build failed (from ./node_modules/vue-loader/dist/index.js): TypeError: Cannot...
I ended up adding ``` "resolutions": { "vue-loader": "^15.10.0" } ``` and its working (if your using vue2)
Noticing this aswell using 1.6.3. Thankfully doesn't affect chromatic tests. For now i need to refresh the page to get the correct handlers to load for that story. Not the...
Same thing .. last hurdle before i can really use this editor i think
Still having this issue with `0.131.7` vue language server looks like this ```{ "dependencies": { "@vue/language-server": "1.8.27", "typescript": "5.4.5" } ``` TS is working inside the .vue files, but i'm...
fyi- got this working by adding this to my tsconfig ``` "plugins": [{ "name": "@vue/typescript-plugin" }], ```
Getting the same issue here ```59: import process2 from "process"; 60: import path from "path"; 61: import fs, { promises as fsPromises } from "fs"; ^ 62: import { fileURLToPath...