Skip to content

Instantly share code, notes, and snippets.

@haydenbleasel
Last active August 4, 2024 19:16
Show Gist options
  • Save haydenbleasel/cabc336535a629822e04edcadade9c04 to your computer and use it in GitHub Desktop.
Save haydenbleasel/cabc336535a629822e04edcadade9c04 to your computer and use it in GitHub Desktop.
Next.js app output
pnpm dev --filter app
> eververse@ dev /Users/haydenbleasel/GitHub/eververse
> turbo dev "--filter" "app"
turbo 2.0.11
• Packages in scope: app
• Running dev in 1 packages
• Remote caching disabled
@repo/database:db:generate: cache bypass, force executing 512e9c710dd60b09
@repo/database:db:generate:
@repo/database:db:generate:
@repo/database:db:generate: > @repo/[email protected] db:generate /Users/haydenbleasel/GitHub/eververse/packages/database
@repo/database:db:generate: > prisma generate
@repo/database:db:generate:
@repo/database:db:generate: Environment variables loaded from .env
@repo/database:db:generate: Prisma schema loaded from prisma/schema.prisma
@repo/database:db:generate:
@repo/database:db:generate: ✔ Generated Prisma Client (v5.17.0) to ./../../node_modules/.pnpm/@[email protected][email protected]/node_modules/@prisma/client in 473ms
@repo/database:db:generate:
@repo/database:db:generate: Start by importing your Prisma Client (See: http://pris.ly/d/importing-client)
@repo/database:db:generate:
@repo/database:db:generate: Tip: Need your database queries to be 1000x faster? Accelerate offers you that and more: https://pris.ly/tip-2-accelerate
@repo/database:db:generate:
app:dev: cache bypass, force executing e2e88259c33a0ca6
app:dev:
app:dev: > app@ dev /Users/haydenbleasel/GitHub/eververse/apps/app
app:dev: > next dev -p 3000
app:dev:
app:dev: ▲ Next.js 14.2.5
app:dev: - Local: http://localhost:3000
app:dev: - Environments: .env.local
app:dev:
app:dev: ✓ Starting...
app:dev: ✓ Ready in 2.6s
app:dev: ✓ Compiled /middleware in 216ms (225 modules)
app:dev: ○ Compiling / ...
app:dev: ⚠ ../../node_modules/.pnpm/[email protected]/node_modules/picocolors/picocolors.js
app:dev: Critical dependency: require function is used in a way in which dependencies cannot be statically extracted
app:dev:
app:dev: Import trace for requested module:
app:dev: ../../node_modules/.pnpm/[email protected]/node_modules/picocolors/picocolors.js
app:dev: ../../node_modules/.pnpm/[email protected]/node_modules/tailwindcss/lib/featureFlags.js
app:dev: ../../node_modules/.pnpm/[email protected]/node_modules/tailwindcss/lib/util/getAllConfigs.js
app:dev: ../../node_modules/.pnpm/[email protected]/node_modules/tailwindcss/lib/public/resolve-config.js
app:dev: ../../node_modules/.pnpm/[email protected]/node_modules/tailwindcss/resolveConfig.js
app:dev: ../../packages/design-system/lib/tailwind.ts
app:dev: ../../packages/design-system/components/provider.tsx
app:dev:
app:dev: ../../node_modules/.pnpm/[email protected]/node_modules/picocolors/picocolors.js
app:dev: Critical dependency: require function is used in a way in which dependencies cannot be statically extracted
app:dev:
app:dev: Import trace for requested module:
app:dev: ../../node_modules/.pnpm/[email protected]/node_modules/picocolors/picocolors.js
app:dev: ../../node_modules/.pnpm/[email protected]/node_modules/tailwindcss/lib/featureFlags.js
app:dev: ../../node_modules/.pnpm/[email protected]/node_modules/tailwindcss/lib/util/getAllConfigs.js
app:dev: ../../node_modules/.pnpm/[email protected]/node_modules/tailwindcss/lib/public/resolve-config.js
app:dev: ../../node_modules/.pnpm/[email protected]/node_modules/tailwindcss/resolveConfig.js
app:dev: ../../packages/design-system/lib/tailwind.ts
app:dev: ./app/(organization)/(home)/components/feedback/incoming-chart.tsx
app:dev: ./app/(organization)/(home)/components/feedback/index.tsx
app:dev: ./app/(organization)/(home)/page.tsx
app:dev: ⚠ metadataBase property in metadata export is not set for resolving social open graph or twitter images, using "http://localhost:3000". See https://nextjs.org/docs/app/api-reference/functions/generate-metadata#metadatabase
app:dev: Clerk - DEPRECATION WARNING: "clerkClient singleton" is deprecated and will be removed in the next major release.
app:dev: Use `clerkClient()` as a function instead.
app:dev: GET / 200 in 25545ms
import typography from '@tailwindcss/typography';
import type { Config } from 'tailwindcss';
import animate from 'tailwindcss-animate';
import defaultTheme from 'tailwindcss/defaultTheme';
const config: Config = {
darkMode: ['class'],
content: [
'./app/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./lib/**/*.{ts,tsx}',
'./providers/**/*.{ts,tsx}',
'../../packages/*/app/**/*.{ts,tsx}',
'../../packages/*/components/**/*.{ts,tsx}',
'../../packages/*/lib/**/*.{ts,tsx}',
'../../packages/*/providers/**/*.{ts,tsx}',
'../../packages/*/src/**/*.{ts,tsx}',
],
theme: {
container: {
center: true,
padding: '2rem',
screens: {
'2xl': '1400px',
},
},
extend: {
colors: {
border: 'hsl(var(--border) / <alpha-value>)',
input: 'hsl(var(--input) / <alpha-value>)',
ring: 'hsl(var(--ring) / <alpha-value>)',
background: 'hsl(var(--background) / <alpha-value>)',
foreground: 'hsl(var(--foreground) / <alpha-value>)',
backdrop: 'hsl(var(--backdrop) / <alpha-value>)',
primary: {
DEFAULT: 'hsl(var(--primary) / <alpha-value>)',
foreground: 'hsl(var(--primary-foreground) / <alpha-value>)',
},
secondary: {
DEFAULT: 'hsl(var(--secondary) / <alpha-value>)',
foreground: 'hsl(var(--secondary-foreground) / <alpha-value>)',
},
destructive: {
DEFAULT: 'hsl(var(--destructive) / <alpha-value>)',
foreground: 'hsl(var(--destructive-foreground) / <alpha-value>)',
},
muted: {
DEFAULT: 'hsl(var(--muted) / <alpha-value>)',
foreground: 'hsl(var(--muted-foreground) / <alpha-value>)',
},
accent: {
DEFAULT: 'hsl(var(--accent) / <alpha-value>)',
foreground: 'hsl(var(--accent-foreground) / <alpha-value>)',
},
popover: {
DEFAULT: 'hsl(var(--popover) / <alpha-value>)',
foreground: 'hsl(var(--popover-foreground) / <alpha-value>)',
},
card: {
DEFAULT: 'hsl(var(--card) / <alpha-value>)',
foreground: 'hsl(var(--card-foreground) / <alpha-value>)',
},
success: {
DEFAULT: 'hsl(var(--success) / <alpha-value>)',
foreground: 'hsl(var(--success-foreground) / <alpha-value>)',
},
warning: {
DEFAULT: 'hsl(var(--warning) / <alpha-value>)',
foreground: 'hsl(var(--warning-foreground) / <alpha-value>)',
},
brand: {
DEFAULT: 'hsl(var(--primary) / <alpha-value>)',
foreground: 'hsl(var(--primary-foreground) / <alpha-value>)',
},
},
borderRadius: {
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)',
},
fontFamily: {
sans: ['var(--font-geist-sans)', ...defaultTheme.fontFamily.sans],
mono: ['var(--font-geist-mono)', ...defaultTheme.fontFamily.mono],
},
keyframes: {
'accordion-down': {
from: { height: '0' },
to: { height: 'var(--radix-accordion-content-height)' },
},
'accordion-up': {
from: { height: 'var(--radix-accordion-content-height)' },
to: { height: '0' },
},
},
animation: {
'accordion-down': 'accordion-down 0.2s ease-out',
'accordion-up': 'accordion-up 0.2s ease-out',
},
typography: (theme: (path: string) => string) => ({
DEFAULT: {
css: {
':first-child': {
marginTop: theme('margin.0'),
},
'h1, h2, h3, h4, h5, h6': {
fontWeight: theme('fontWeight.semibold'),
letterSpacing: theme('letterSpacing.tight'),
marginBottom: theme('margin.4'),
'+ h1, + h2, + h3, + h4, + h5, + h6': {
marginTop: theme('margin.0'),
},
},
h1: {
fontSize: theme('fontSize.3xl'),
marginTop: theme('margin.16'),
},
h2: {
fontSize: theme('fontSize.2xl'),
},
h3: {
fontSize: theme('fontSize.xl'),
},
h4: {
fontSize: theme('fontSize.lg'),
},
h5: {
fontSize: theme('fontSize.base'),
},
h6: {
fontSize: theme('fontSize.base'),
},
table: {
boxShadow: `0 0 0 1px ${theme('colors.gray.200')}`,
borderRadius: theme('borderRadius.md'),
overflow: 'hidden',
p: {
margin: 0,
},
th: {
paddingTop: '0.5714286em',
paddingRight: '0.5714286em',
paddingBottom: '0.5714286em',
paddingLeft: '0.5714286em',
backgroundColor: theme('colors.gray.100'),
'&:not(:last-child)': {
borderRightWidth: '1px',
borderRightColor: theme('colors.gray.200'),
},
},
'tbody td, tfoot td': {
paddingLeft: '0.5714286em',
'&:not(:last-child)': {
borderRightWidth: '1px',
borderRightColor: theme('colors.gray.200'),
},
},
},
code: {
'&::before, &::after': {
display: 'none',
},
},
pre: {
borderWidth: 1,
borderColor: theme('colors.gray.200'),
},
},
},
invert: {
css: {
table: {
boxShadow: `0 0 0 1px ${theme('colors.gray.700')}`,
th: {
backgroundColor: theme('colors.gray.800'),
'&:not(:last-child)': {
borderRightColor: theme('colors.gray.700'),
},
},
'tbody td, tfoot td': {
'&:not(:last-child)': {
borderRightColor: theme('colors.gray.700'),
},
},
},
pre: {
borderColor: theme('colors.gray.800'),
},
},
},
}),
},
},
plugins: [animate, typography],
};
export default config;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment