-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrender.yaml
33 lines (33 loc) · 851 Bytes
/
render.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
services:
# A static site
- type: web
name: doc-site
runtime: static
buildCommand: pnpm install && pnpm run build
staticPublishPath: ./apps/doc-site/build
pullRequestPreviewsEnabled: false # optional
buildFilter:
paths:
- apps/doc-site/**
ignoredPaths:
- apps/doc-site/**/*.test.*
headers:
- path: /*
name: X-Frame-Options
value: deny
# A static site
- type: web
name: ui-storybook
runtime: static
buildCommand: pnpm install && pnpm run build
staticPublishPath: ./apps/ui-storybook/storybook-static
pullRequestPreviewsEnabled: false # optional
buildFilter:
paths:
- apps/ui-storybook/**
ignoredPaths:
- apps/ui-storybook/**/*.test.*
headers:
- path: /*
name: X-Frame-Options
value: deny