mirror of
https://github.com/stablyai/orca.git
synced 2026-09-23 08:02:31 +00:00
Publish the standalone docs site under docs/site and deploy it on stable desktop releases.
11 lines
183 B
JavaScript
11 lines
183 B
JavaScript
import nextConfig from 'eslint-config-next'
|
|
|
|
const config = [
|
|
...nextConfig,
|
|
{
|
|
ignores: ['.source/**', 'node_modules/**', 'tsconfig.tsbuildinfo']
|
|
}
|
|
]
|
|
|
|
export default config
|