Build a Wallpaper
The build command creates a private development build for your own use. To distribute your wallpaper to other users, use the publish command instead.
Build Command
pnpm fluxlay buildOr specify a directory and output name:
pnpm fluxlay build ./my-wallpaper -o custom-name.fluxlayWhat Happens
- Validates
fluxlay.yaml. - Runs
vite buildto produce optimized assets indist/. - Fetches your Developer Key from the API (cached locally).
- Packages the build output into an encrypted
.fluxlayfile.
Options
| Option | Description | Default |
|---|---|---|
-o, --output <name> | Output file name | wallpaper.fluxlay |
Requirements
- You must be logged in (
fluxlay login). - A valid
fluxlay.yamlmust exist in the project root.