Farnabaz
Farnabaz
Thanks @GerryWilko for the issue and PR, Adding hash to the table's name is not an ideal thing to do. As a user, I don't like to see hashes in...
For me, it opens the game but does not connect to the coordinator, and when I tried to demo a hero, I received this error > Failed to initialize Steamworks...
This is related to Nitro's pre-render logic which does not crawl routes with unknown extension. (Having do in file name is like having a dot in a route, and characters...
Try adding `_id` to transformer result: ```js return { _id, name: name, type: "plc", body: zdata.data } as any ``` Content module uses `_id` internally to locate and index all...
You can simply pass class to ContentDoc component `` where you use it. If you are using Document Driven mode, all you need it to create a catch-all page inside...
You can set `respectPathCase` to `true` in module options in `nuxt.config.ts` ``` export default defineNuxtConfig({ content: { respectPathCase: true } }) ``` Checkout https://content.nuxt.com/get-started/configuration#respectpathcase
@hasan-ozbey You now pass `lower: false` in `slugifyOptions` https://content.nuxt.com/docs/getting-started/configuration#pathmetaslugifyoptions
@arashsheyda Contribution is more than welcome 🙂 Looking forward for devtools integration
@OversensitiveCat, I checked your repository. The issue is related to `useAsyncData` and Netlify behavior. Why does it create a hydration issue?! - You are using `route.path` as the cache key...
Indeed, this can be done with content collections. Collection are separated entities that can be queried separately. Just like your proposal, content's path will be clean, and they will no...