Muris Ceman

Results 99 comments of Muris Ceman

Hey @SuddenDev! This is totally possible, and the easiest way to do it is by using the `pageLikeCollection` to predefine the definition and then simply disable the `contentBuilder` option before...

No problem! Regarding the missing tabs, it's because special layout items are used for the edit page with the content builder. You can check here the defaults: https://github.com/pruvious/pruvious/blob/f2c0a00842beffa506ba87652b3ec641cb45c54a/src/runtime/collections/page-like.ts#L142-L158 Items starting...

1. Is `localhost:3000/dashboard` accessible after the error is thrown? 2. Did you install Pruvious with `npx pruvious init `? 3. What operating system do you use? 4. Does a fresh...

This is a bit hard to debug since I cannot reproduce the issue. Could you please try to add this to your `nuxt.config.js` file: ```ts export default defineNuxtConfig({ // ......

Some more things to try out: 1. Try using `nuxt dev` in the `dev` script in `package.json` instead of `pruvious dev`. 2. Can you try to build the project and...

I recently fixed the duplicate dependencies issue in ebfc2a2c0b3eb42e3d5ae6b03a2890efaaae1084 (`nuxi init` now uses `dependencies` instead of `devDependencies`). Regarding the issue you're having, I'm unfortunately unable to provide a solution at...

I'm not sure if this is normal or not, to be honest. The nearest `node_modules` should be resolved as far as I know. I just tried nesting a Nuxt project...

It's interesting that your nested project is actually working. Could you please try using PostgreSQL instead of the default SQLite: ```ts // nuxt.config.ts export default defineNuxtConfig({ modules: ['pruvious'], pruvious: {...

Glad that we narrowed down the issue! I'm pretty sure it's related to the [`sqlite3`](https://www.npmjs.com/package/sqlite3) package, which has known [errors](https://github.com/TryGhost/node-sqlite3/issues/1381) with Node's `worker_threads`. The command `pruvious dev` is actually meant...

Hey @PP-Tom, thanks for the suggestion - Drizzle is also a good option. The main reasons I picked Sequelize were its `sync()` method, which is used and extended to work...