Titan
Titan
Explore posts from servers
NNuxt
Created by Titan on 10/29/2024 in #❓・help
[solved] Vue app aliases are not allowed in server runtime
found it, server was using a util from the client and although the function it used was pure, the file had some FE imports at the top
9 replies
NNuxt
Created by Titan on 10/29/2024 in #❓・help
[solved] Vue app aliases are not allowed in server runtime
@manniL thanks, thought as much but disabled all modules in nuxt.config.ts without success
9 replies
NNuxt
Created by Titan on 10/29/2024 in #❓・help
[solved] Add excludes to server tsconfig
found the answer: nuxt.config.ts
nitro: {
typescript: {
tsConfig: {
exclude: ['../dist/**/*', '../app-native/**/*', '../wrangler/**/*', '../.husky/**/*', '../.git/**/*']
}
}
nitro: {
typescript: {
tsConfig: {
exclude: ['../dist/**/*', '../app-native/**/*', '../wrangler/**/*', '../.husky/**/*', '../.git/**/*']
}
}
5 replies
NNuxt
Created by Robin on 4/9/2024 in #❓・help
Unit Tests for Nuxt's /server Directory
when using import getHandler from './signed-url.post' in my test
14 replies
NNuxt
Created by Robin on 4/9/2024 in #❓・help
Unit Tests for Nuxt's /server Directory
No description
14 replies
NNuxt
Created by Titan on 7/30/2024 in #❓・help
How to "mock" an H3 request with query string
figured it out:
const h3Event = {
method: 'GET',
path: '?email=bar'
}
const h3Event = {
method: 'GET',
path: '?email=bar'
}
2 replies
CDCloudflare Developers
Created by Titan on 6/26/2024 in #general-help
Custom hostnames for SaaS timing out
Thanks, appreciate the info
13 replies
CDCloudflare Developers
Created by Titan on 6/26/2024 in #general-help
Custom hostnames for SaaS timing out
are there any plans to make pages work with CF for SaaS? Seems like a missed opportunity that the 2 products don't work together if CF are convincing devs to build SaaS platforms on pages
13 replies
CDCloudflare Developers
Created by Titan on 6/26/2024 in #general-help
Custom hostnames for SaaS timing out
And I assume you can add custom domains to pages via api so I can still let customers self serve their vanity domain setup for my platform
13 replies
CDCloudflare Developers
Created by Titan on 6/26/2024 in #general-help
Custom hostnames for SaaS timing out
If I was to add them to the pages custom domains would they still follow the same steps to setup custom host names for sass with the dns records for ssl etc?
13 replies
CDCloudflare Developers
Created by Titan on 6/26/2024 in #general-help
Custom hostnames for SaaS timing out
No description
13 replies
CDCloudflare Developers
Created by Titan on 6/26/2024 in #general-help
Custom hostnames for SaaS timing out
I created the custom domain via the API if it matters
13 replies
CDCloudflare Developers
Created by Titan on 6/26/2024 in #general-help
Custom hostnames for SaaS timing out
No description
13 replies
NNuxt
Created by Titan on 5/24/2024 in #❓・help
Dynamic/computed layout without causing content shift or re-render after route change
I decided to abandon layouts feature and just move them into components/layouts and wrap my page template with them instead. Problem fixed, no layout shifts anymore
2 replies
DTDrizzle Team
Created by Bradley on 2/9/2024 in #help
How to define schemas (any dialect) with full text search column types?
did you find an answer to this?
3 replies