29 lines
520 B
Markdown
29 lines
520 B
Markdown
![]() |
---
|
||
|
title: Pattern configuration file
|
||
|
for: developers
|
||
|
about: Reference documentation for the pattern configuration file
|
||
|
---
|
||
|
|
||
|
```js
|
||
|
import { version } from '../package.json'
|
||
|
|
||
|
export default {
|
||
|
version,
|
||
|
name: "sorcha",
|
||
|
// More configuration here
|
||
|
}
|
||
|
```
|
||
|
|
||
|
A pattern configuration file exports a default object with the following properties:
|
||
|
|
||
|
<ReadMore list />
|
||
|
|
||
|
<Note>
|
||
|
|
||
|
This is about the pattern configuration file, used at build-time.
|
||
|
|
||
|
For run-time configuration, see [Pattern settings](/reference/settings/).
|
||
|
|
||
|
</Note>
|
||
|
|