2021-10-17 18:26:00 +02:00
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
title: Pattern configuration file
|
|
|
|
for: developers
|
|
|
|
about: Reference documentation for the pattern configuration file
|
2021-10-17 18:26:00 +02:00
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
|
|
|
```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>
|
2021-10-17 18:26:00 +02:00
|
|
|
|