
The replaces the NextJS site powering FreeSewing.dev with a Docusaurus setup. It's part of my efforts to simplify FreeSewing's setup so we can focus on our core value proposition.
24 lines
371 B
Text
24 lines
371 B
Text
---
|
|
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"
|
|
})
|
|
```
|