Last active
May 4, 2019 16:50
-
-
Save pichfl/825d9371c76de8c536004a4a821852dd to your computer and use it in GitHub Desktop.
Now.sh config for Ember.js projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": 2, | |
"name": "your-ember-app-name", | |
"builds": [{ "src": "package.json", "use": "@now/static-build" }], | |
"routes": [ | |
{ "handle": "filesystem" }, | |
{ "src": ".*", "dest": "/index.html" } | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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