Skip to content

Instantly share code, notes, and snippets.

@pichfl
Last active May 4, 2019 16:50
Show Gist options
  • Save pichfl/825d9371c76de8c536004a4a821852dd to your computer and use it in GitHub Desktop.
Save pichfl/825d9371c76de8c536004a4a821852dd to your computer and use it in GitHub Desktop.
Now.sh config for Ember.js projects
{
"version": 2,
"name": "your-ember-app-name",
"builds": [{ "src": "package.json", "use": "@now/static-build" }],
"routes": [
{ "handle": "filesystem" },
{ "src": ".*", "dest": "/index.html" }
]
}
{
"scripts": {
"now-build": "ember build --env=production"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment