Project Configuration
Last updated
Last updated
Each project needs a configuration file that lives inside the Git repo of the project.
To get started, you can use the init command to create an initial configuration which uses storybook by default, you can in the config file later:
This will create a new file lostpixel.config.js
that looks the following way:
In case you prefer TypeScript (recommended), you will need to do a bit more but will benefit from a much better experience when it comes to configuring the project.
To initialize the configuration run this command:
We will also need the lost-pixel
NPM package to get access to the configuration types. Run this command to add it as a developer dependency:
Finally, we can take a look at the created configuration file lostpixel.config.ts
. You can notice that it includes types already, which makes writing the configuration so much easier (IDE IntelliSense, type safety, ...).