mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 01:45:25 -04:00
12 lines
455 B
TypeScript
12 lines
455 B
TypeScript
/** Path to directory with .mdx files, relative to project root. */
|
|
export const POSTS_DIR = "notes";
|
|
|
|
/**
|
|
* Path to an image used in various places to represent the site, relative to project root. This path must be included
|
|
* in [next.config.ts](../../next.config.ts) under `outputFileTracingIncludes`.
|
|
*/
|
|
export const AVATAR_PATH = "app/avatar.jpg";
|
|
|
|
/** Maximum width of content wrapper (e.g. for images) in pixels. */
|
|
export const MAX_WIDTH = 865;
|