Reputation: 356
I have create a polymer js application And I can run this application in localhost by "gulp serve", but How can I deploy this application in live server
Any suggestion will be thankful for me
Upvotes: 0
Views: 129
Reputation: 10135
Depends.
Did you use the Polymer Starter Kit?
If yes, just run gulp
and everything should be neatly saved in a dist
directory. Then you just upload the contents of your dist directory on your server.
If you don't use Polymer Starter Kit, the process still applies. You don't need any compilation to deploy Polymer applications. Just make sure everything is loaded correctly.
Upvotes: 2