Mads
Explore posts from serversApp.vue overwritten by layer after adding @nuxt/content@3
@Tom there is definitely a bug in layers after upgrading from from Nuxt 3.14.1592 to 3.15.2 I would suggest to downgrade until it is fixed.
@danielroe when using Layers
And having this app.config.ts in base layer
// base layer
export default defineAppConfig({
myLayer: {
name: 'base' as 'base' | 'kassebil' | 'maxgarage' | 'hellocar',
},
})
When I deploy the Kassebil layer it will still show myLayer.name === base if the component comes from this layer.
Even with this app.config.ts in kassebil layer
// base layer
export default defineAppConfig({
myLayer: {
name: 'kassebil' as 'base' | 'kassebil' | 'maxgarage' | 'hellocar',
},
})
I will try to make a minimal repro soon
29 replies
DTDrizzle Team
•Created by BEEIRL on 8/23/2024 in #help
PlanetScale drizzle-kit push: Cannot drop index: needed in a foreign key constraint
I experience the same.
3 replies
DTDrizzle Team
•Created by theo (t3.gg) on 9/3/2024 in #help
Consistent issues with `drizzle-kit push` on Turso
I appreciate it, thanks Andrew. Let me know if there is anything I can do.
24 replies
DTDrizzle Team
•Created by theo (t3.gg) on 9/3/2024 in #help
Consistent issues with `drizzle-kit push` on Turso
Sorry for hijacking. Any chance we can get Push to work on Planetscale working again @Andrew Sherman 🙂 https://github.com/drizzle-team/drizzle-orm/issues/2599
I can provide a Planetscale database if you need it for testing.
24 replies
DTDrizzle Team
•Created by Mads on 8/31/2024 in #help
notNull and Unique
https://github.com/drizzle-team/drizzle-orm/issues/2599 This seems to be the issue.
7 replies
DTDrizzle Team
•Created by Mads on 8/31/2024 in #help
notNull and Unique
Well that added the unique constraint. But it still complaints about I’m about to add a new unique constraint.
7 replies
DTDrizzle Team
•Created by Mads on 8/31/2024 in #help
notNull and Unique
Moving unique() to the end fixed it:
name: varchar('name', { length: 255 }).notNull().unique(),
7 replies