Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 410 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 410 Bytes

Netlify TOML for create-react-app

[build]

  • command = 'npm run build'
  • publish = '/build'
  • functions = './functions'

[[redirects]]

  • from = '/api/*'
  • to = '/.netlify/functions/:splat'
  • status = 200

[[redirects]]

  • from = '/*'
  • to = '/index.html'
  • status = 200

build Command

"build": "CI= react-scripts build"

^^^^replace default CRA build command with this to allow serverless funcs