Louis Ramos
Louis Ramos
For some reason, neither ```ruby Devise.setup do |config| ... config.warden do |manager| manager.scope_defaults :user, store: false end ... end ``` nor ```ruby module HasRackSession extend ActiveSupport::Concern class FakeRackSession < Hash...
I'm having the same problem. This works ```json "@nuxt/content": "2.8.5", "nuxt": "^3.8.2" ``` So does this ```json "@nuxt/content": "2.9.0", "nuxt": "^3.8.1" ``` But this won't ```json "@nuxt/content": "2.9.0", "nuxt": "^3.8.2"...
@farnabaz haven't seen this issue in a while. I'm using nuxt 3.11.1 and /content 2.12.1 now and everything work as intended. Issue can probably be closed
I don't remember whether `navigateTo` is related to `unplugin-vue-router` or not but it has a similar problem 
@ ans @/* should be paths that exist by default in the nuxt tsconfig anyway 🤔 Are you not extending your tsconfig.json with `.nuxt/tsconfig.json` ?
I'm having the same problem ``` |-- app.vue |-- server | |-- api | | |-- test.ts ``` ```ts // test.ts export default defineEventHandler(() => "Hello there") ``` ```ts //...
Any news on this ? I just discovered that, on a project that does not have the issue and using `bun` as the package manager, if I `rm -rf bun.lockb`...
I did but there isn't much in there. I haven't tried the workaround but it doesn't really explain what the issue is nor why it would work with bun and...
Makes sense Well at least it's working now, I'll keep an eye on whether I can remove the package later on or not Thanks for you time @manniL 👋
In the meantime you can use the non-global method and you'll have all the intellisense you need, just like in the script ```html {{ t("foo") }} const { t }...