\r\n \u003Cp>This is a test\u003C/p>\r\n \u003C/div>\r\n\u003C/template>\r\n\u003Cstyle>\r\np {\r\n font: 1.25rem/1.75rem Lato, serif;\r\n/* font-family: Lato, serif; */\r\n}\r\n\u003C/style>\r\n```\r\n\r\nIt seems to me that toggling betwen \"font:\" and \"font-family:\" in the css makes Lato (or any other font) appear or disappear in the devtools fonts tab. \r\n\r\nOf course, it's also possible that I might be doing something very stupid. Or that the fonts module does not respect \"fonts:\" by design.\r\n\r\nSometimes \"npm run dev\" is required to show this behaviour.\r\n\r\nExamples:\r\n\r\n\r\n\r\n\r\n",[3169,3172],{"name":3170,"color":3171},"bug","d73a4a",{"name":3173,"color":3174},"good first issue","7057ff",291,"fonts","closed","support scanning font families from \"font:\"","2024-10-01T15:09:50Z","https://github.com/nuxt/fonts/issues/291",0.46636504,{"description":3183,"labels":3184,"number":3190,"owner":3138,"repository":3138,"state":3177,"title":3191,"updated_at":3192,"url":3193,"score":3194},"### Environment\n\n- Operating System: Windows_NT\r\n- Node Version: v18.19.0\r\n- Nuxt Version: 3.8.0\r\n- CLI Version: 3.10.0\r\n- Nitro Version: 2.8.1\r\n- Package Manager: npm@10.2.3\r\n- Builder: -\r\n- User Config: css, extends, typescript, runtimeConfig, modules, directus\r\n- Runtime Modules: nuxt-directus@5.6.0\r\n- Build Modules: -\n\n### Reproduction\n\n`import { Ref } from 'vue';`\r\n`const testVar: Ref\u003Cany> = ref(null)`\n\n### Describe the bug\n\nHere is the error I get :\r\n`The requested module '/_nuxt/node_modules/.cache/vite/client/deps/vue.js?v=b0c30841' does not provide an export named 'Ref'`\r\nwhen I want to type my vars in vue components\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3185,3188],{"name":3186,"color":3187},"3.x","29bc7f",{"name":3149,"color":3189},"E99695",24653,"can't use type Ref without getting error","2023-12-13T09:14:53Z","https://github.com/nuxt/nuxt/issues/24653",0.6872717,{"description":3196,"labels":3197,"number":3209,"owner":3138,"repository":3138,"state":3177,"title":3210,"updated_at":3211,"url":3212,"score":3213},"### Environment\r\n\r\n- Operating System: `Darwin`\r\n- Node Version: `v18.15.0`\r\n- Nuxt Version: `3.5.3`\r\n- Nitro Version: `2.5.0`\r\n- Package Manager: `pnpm@8.6.2`\r\n- Builder: `vite`\r\n- User Config: `devtools`\r\n- Runtime Modules: `-`\r\n- Build Modules: `-`\r\n\r\n\r\n### Reproduction\r\n\r\nThis will result in an error because the type `Ref` is not found in `#imports`.\r\n```js\r\nimport { ref, type Ref } from '#imports'\r\n```\r\n\r\nor is this the correct approach..? (by the way I have set `autoImport: false` in `nuxt.config.ts`)\r\nActually, importing from 'vue' seems clearer to me than importing from '#imports'.\r\n```js\r\nimport { ref, type Ref } from 'vue'\r\n```\r\n\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Logs\r\n\r\n_No response_",[3198,3201,3202,3205,3206],{"name":3199,"color":3200},"types","2875C3",{"name":3186,"color":3187},{"name":3203,"color":3204},"dx","C39D69",{"name":3170,"color":3171},{"name":3207,"color":3208},"🔨 p3-minor","FBCA04",21684,"Can't import types like `Ref` from `#imports`","2023-06-26T15:53:31Z","https://github.com/nuxt/nuxt/issues/21684",0.6992003,{"description":3215,"labels":3216,"number":3220,"owner":3138,"repository":3221,"state":3177,"title":3222,"updated_at":3223,"url":3224,"score":3225},"All information are [on the form](https://docs.google.com/forms/d/1wj_8SJSKsBbAl2LHP_FXN1hmX2F9q0exgnMgnqItOew/edit#response=ACYDBNiEAjSFS14oLMASHl7Bakxyba9MzTsV9gUM3-EFLRaQ9PcQISs5YXoEXTo2zojHPxo)\n\nAnd the logos are in your mailbox !",[3217],{"name":3218,"color":3219},"marketing","f5c828",1135,"nuxt.com","[Partner page] Create Macopedia partner page","2023-06-06T12:14:39Z","https://github.com/nuxt/nuxt.com/issues/1135",0.6999684,{"description":3227,"labels":3228,"number":3236,"owner":3138,"repository":3138,"state":3177,"title":3237,"updated_at":3238,"url":3239,"score":3240},"### Environment\n\n------------------------------\r\n- Operating System: `Darwin`\r\n- Node Version: `v16.16.0`\r\n- Nuxt Version: `3.0.0-rc.9`\r\n- Nitro Version: `0.5.0`\r\n- Package Manager: `pnpm@7.11.0`\r\n- Builder: `vite`\r\n- User Config: `typescript`, `css`, `components`, `modules`, `runtimeConfig`, `vglStore`\r\n- Runtime Modules: `~/nuxt-modules/routes-module.ts`, `@pinia/nuxt`, `@vueuse/nuxt@9.2.0`\r\n- Build Modules: `-`\r\n------------------------------\n\n### Reproduction\n\nhttps://stackblitz.com/edit/github-cyy9sn?file=app.vue\n\n### Describe the bug\n\nI'm constantly forgetting to add `.value` when working with refs and wondered why eslint is not helping me – no visual hints in VS Code and no error when running eslint in terminal.\r\nThere is a rule from `eslint-plugin-vue` to catch this: [vue/no-ref-as-operand](https://eslint.vuejs.org/rules/no-ref-as-operand.html)\r\nTurns out, the auto imported `ref` from `#imports` is somehow \"different\" than directly importing from `vue`.\r\nIf I do `import { ref } from 'vue'`, I get squiggly lines in VS Code and `.value` is automatically added when I save the file.\r\nSee also simple reproduction above.\r\n\r\n```vue\r\n\u003Cscript setup lang=\"ts\">\r\n// uncomment this will throw vue/no-ref-as-operand\r\n// import { ref } from 'vue';\r\n\r\n// uncomment this will not help\r\n// import { ref } from '#imports';\r\n\r\nconst count = ref(1);\r\n\r\n// NOTE: should be count.value\r\nconst foo = count + 1;\r\n\r\nconsole.log(foo);\r\n\u003C/script>\r\n```\r\n\r\nNot sure if this should be fixed in `eslint-plugin-vue` or here.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3229,3232,3233],{"name":3230,"color":3231},"discussion","538de2",{"name":3186,"color":3187},{"name":3234,"color":3235},"upstream","E8A36D",14882,"auto imported `ref` will not trigger `vue/no-ref-as-operand` warning from eslint-plugin-vue","2024-04-09T08:17:09Z","https://github.com/nuxt/nuxt/issues/14882",0.7013165,{"description":3242,"labels":3243,"number":3244,"owner":3138,"repository":3152,"state":3177,"title":3245,"updated_at":3246,"url":3247,"score":3248},"It seems that v0.2.2 is the latest available release according to npm and Github. However there have been 18 commits to `main` since then. Is this a deliberate choice **not** to release or some automation that has stopped working?\r\nhttps://github.com/nuxt/test-utils/compare/v0.2.2...main\r\n\r\n~As an aside I am getting 500 errors from the nuxt server which is why I am digging further into things.~ Removed to keep the Issue focused ❤️ ",[],485,"Stale releases","2023-12-02T00:13:13Z","https://github.com/nuxt/test-utils/issues/485",0.7027317,{"labels":3250,"number":3254,"owner":3138,"repository":3138,"state":3177,"title":3255,"updated_at":3256,"url":3257,"score":3258},[3251,3252,3253],{"name":3186,"color":3187},{"name":3170,"color":3171},{"name":3207,"color":3208},14242,"ref is not defined when import.meta.glob is used when template has an html class","2023-01-19T17:30:08Z","https://github.com/nuxt/nuxt/issues/14242",0.708002,["Reactive",3260],{},["Set"],["ShallowReactive",3263],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f4bg1PIOltNihnOclnrq9O08Sw52tOCOVR4mGrrRbqJE":-1},"/nuxt/scripts/291"]