1
0
Fork 0

chore(docs): Added stackPrefix settings doc

This commit is contained in:
Benjamin F 2023-05-07 17:09:14 -07:00 committed by Benjamin Fan
parent 8fbb41fca7
commit c29b2c57da

View file

@ -0,0 +1,24 @@
---
title: stackPrefix
---
The `stackPrefix` setting allows you to specify a prefix that will be used
for all stacks in the pattern. Its default value is `` (no prefix).
## Signature
```js
const settings = {
String stackPrefix=''
}
```
## Example
```js
import { Aaron } from "@freesewing/aaron";
const pattern = new Aaron({
stackPrefix: "something-else"
})
```