Using polymer init
you can create an element project and using polymer serve
you can serve the component page (showing docs and demo).
To serve it, Polymer CLI does some path remapping because the import tags do not match the project structure. From the docs:
When you run polymer serve, all elements in bower_components are remapped to appear to be in sibling directories relative to my-el. The current element is served from the made-up path of /components/bower name, where bower name is the name field from your element project's bower.json file.
What should be the appropriate way to build the component page so it can be served by another web server?
Should I move the files so they match the references or is there any better approach?