Brenner
Brenner
Explore posts from servers
TTCTheo's Typesafe Cult
Created by Brenner on 1/29/2023 in #questions
New NodeError (looping error)
I sometimes get this error over and over again in a loop, and can't figure out what's causing it. Anyone else seen this?
at new NodeError (node:internal/errors:393:5)
at Function.fail (node:internal/assert:20:9)
at handleMaxCallStackSize (node:internal/util/inspect:1550:10)
at formatRaw (node:internal/util/inspect:1063:12)
at formatValue (node:internal/util/inspect:841:10)
at formatProperty (node:internal/util/inspect:1920:11)
at formatRaw (node:internal/util/inspect:1055:9)
at formatValue (node:internal/util/inspect:841:10)
at inspect (node:internal/util/inspect:365:10)
at proxy.<computed> (/Users/brenner/repos/avatar-studio/node_modules/@prisma/client/runtime/index.js:33565:12)
This is caused by either a bug in Node.js or incorrect usage of Node.js internals.
Please open an issue with this stack trace at https://github.com/nodejs/node/issues
at new NodeError (node:internal/errors:393:5)
at Function.fail (node:internal/assert:20:9)
at handleMaxCallStackSize (node:internal/util/inspect:1550:10)
at formatRaw (node:internal/util/inspect:1063:12)
at formatValue (node:internal/util/inspect:841:10)
at formatProperty (node:internal/util/inspect:1920:11)
at formatRaw (node:internal/util/inspect:1055:9)
at formatValue (node:internal/util/inspect:841:10)
at inspect (node:internal/util/inspect:365:10)
at proxy.<computed> (/Users/brenner/repos/avatar-studio/node_modules/@prisma/client/runtime/index.js:33565:12)
This is caused by either a bug in Node.js or incorrect usage of Node.js internals.
Please open an issue with this stack trace at https://github.com/nodejs/node/issues
4 replies
TTCTheo's Typesafe Cult
Created by Brenner on 1/9/2023 in #questions
Tailwind Default Colors not showing automatically
When I use something like bg-gray-800 it's not showing up. If I go and add it explicitly in my tailwind.config.js, it works. But they're all suppose to show up by default, correct? Did I configure tailwind incorrectly when I used T3?
const colors = require('tailwindcss/colors')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
gray: colors.gray,
},
extend: {},
},
plugins: [],
}
const colors = require('tailwindcss/colors')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
gray: colors.gray,
},
extend: {},
},
plugins: [],
}
7 replies