Learn how to configure your PreLaunch application
config.ts
in the root directory.
config.ts
file contains all the main settings for your application:
config.ts
file, PreLaunch also uses environment variables for sensitive information. These should be set in your .env.local
file:
ConfigProps
type in types/config.ts
:
config.ts
How do I add a new pricing plan?
plans
array in the paddle
section of config.ts
. Make sure it has a unique id
and a valid Paddle priceId
.How do I change the primary color of the application?
main
color in the colors
section of config.ts
. Use a valid hex color code (e.g., “#ff5500”).How do I update SEO information?
appName
and appDescription
in config.ts
. These will be used for default SEO tags throughout the application.