IronManiac
IronManiac
CCConvex Community
Created by IronManiac on 1/22/2024 in #general
Storing .mdx files
well @Jamie i'd love to contribute/collaborate in my free time. i've been building a silly social media app to try convex out and i love it.
9 replies
CCConvex Community
Created by IronManiac on 1/18/2024 in #support-community
uploadstuff lib not exporting react components
but that works also. thanks.
15 replies
CCConvex Community
Created by IronManiac on 1/18/2024 in #support-community
uploadstuff lib not exporting react components
fileTypes is also optional so i just removed it and it worked.
15 replies
CCConvex Community
Created by IronManiac on 1/18/2024 in #support-community
uploadstuff lib not exporting react components
15 replies
CCConvex Community
Created by IronManiac on 1/22/2024 in #general
Storing .mdx files
sweet, i'm gonna use https://mdxeditor.dev/editor/demo so the user can craft a rich text post
9 replies
CCConvex Community
Created by IronManiac on 1/18/2024 in #support-community
uploadstuff lib not exporting react components
No description
15 replies
CCConvex Community
Created by IronManiac on 1/18/2024 in #support-community
uploadstuff lib not exporting react components
Ok thanks @Michal Srb, I'll give that a try.
15 replies
CCConvex Community
Created by IronManiac on 1/18/2024 in #support-community
uploadstuff lib not exporting react components
Thoughts @Michal Srb ?
15 replies
CCConvex Community
Created by IronManiac on 1/18/2024 in #support-community
uploadstuff lib not exporting react components
package.json
{
"name": "convex-nextjs-app-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm-run-all dev:init --parallel dev:server dev:client",
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev:server": "convex dev",
"dev:client": "next dev",
"dev:init": "convex dev --until-success"
},
"dependencies": {
"@clerk/nextjs": "^4.29.3",
"@clerk/themes": "^1.7.9",
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@types/node": "20.11.0",
"@types/react": "18.2.47",
"@types/react-dom": "18.2.18",
"@xixixao/uploadstuff": "^0.0.5",
"autoprefixer": "10.4.16",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"convex": "^1.7.1",
"dayjs": "^1.11.10",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"modern-async": "^2.0.0",
"next": "14.0.4",
"next-themes": "^0.2.1",
"postcss": "8.4.33",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.49.3",
"tailwind-merge": "^2.2.0",
"tailwindcss": "3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.3.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/async": "^3.2.24",
"eslint-config-prettier": "^9.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1"
}
}
{
"name": "convex-nextjs-app-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm-run-all dev:init --parallel dev:server dev:client",
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev:server": "convex dev",
"dev:client": "next dev",
"dev:init": "convex dev --until-success"
},
"dependencies": {
"@clerk/nextjs": "^4.29.3",
"@clerk/themes": "^1.7.9",
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@types/node": "20.11.0",
"@types/react": "18.2.47",
"@types/react-dom": "18.2.18",
"@xixixao/uploadstuff": "^0.0.5",
"autoprefixer": "10.4.16",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"convex": "^1.7.1",
"dayjs": "^1.11.10",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"modern-async": "^2.0.0",
"next": "14.0.4",
"next-themes": "^0.2.1",
"postcss": "8.4.33",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.49.3",
"tailwind-merge": "^2.2.0",
"tailwindcss": "3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.3.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/async": "^3.2.24",
"eslint-config-prettier": "^9.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1"
}
}
15 replies
CCConvex Community
Created by IronManiac on 1/18/2024 in #support-community
uploadstuff lib not exporting react components
i forked your template so it's the same as yours @Michal Srb haha tsconfig.json
{
/* This TypeScript project config describes the environment that
* Convex functions run in and is used to typecheck them.
* You can modify it, but some settings required to use Convex.
*/
"compilerOptions": {
/* These settings are not required by Convex and can be modified. */
"allowJs": true,
"strict": true,

/* These compiler options are required by Convex */
"target": "ESNext",
"lib": ["ES2021", "dom"],
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"module": "ESNext",
"moduleResolution": "Node",
"isolatedModules": true,
"noEmit": true
},
"include": ["./**/*"],
"exclude": ["./_generated"]
}
{
/* This TypeScript project config describes the environment that
* Convex functions run in and is used to typecheck them.
* You can modify it, but some settings required to use Convex.
*/
"compilerOptions": {
/* These settings are not required by Convex and can be modified. */
"allowJs": true,
"strict": true,

/* These compiler options are required by Convex */
"target": "ESNext",
"lib": ["ES2021", "dom"],
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"module": "ESNext",
"moduleResolution": "Node",
"isolatedModules": true,
"noEmit": true
},
"include": ["./**/*"],
"exclude": ["./_generated"]
}
15 replies
CCConvex Community
Created by IronManiac on 1/18/2024 in #support-community
uploadstuff lib not exporting react components
No description
15 replies
CCConvex Community
Created by IronManiac on 1/12/2024 in #support-community
unknown option '--cmd' on older version of Convex
cool 🙂
43 replies
CCConvex Community
Created by IronManiac on 1/12/2024 in #support-community
unknown option '--cmd' on older version of Convex
maybe just be another example that you can put a link to somewhere
43 replies
CCConvex Community
Created by IronManiac on 1/12/2024 in #support-community
unknown option '--cmd' on older version of Convex
would love to contribute/collaborate
43 replies
CCConvex Community
Created by IronManiac on 1/12/2024 in #support-community
unknown option '--cmd' on older version of Convex
that's hilarious.
43 replies
CCConvex Community
Created by IronManiac on 1/12/2024 in #support-community
unknown option '--cmd' on older version of Convex
first time using clerk, long time user of auth0
43 replies
CCConvex Community
Created by IronManiac on 1/12/2024 in #support-community
unknown option '--cmd' on older version of Convex
clerk's modal mode is so much better than redirect.
43 replies
CCConvex Community
Created by IronManiac on 1/12/2024 in #support-community
unknown option '--cmd' on older version of Convex
improved the sign in and out UX
43 replies