You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, make sure you have the [Polymer CLI](https://www.npmjs.com/package/polymer-cli) installed. Then run `polymer serve` to serve your application locally.
8
-
9
-
## Viewing Your Application
10
-
11
-
```
12
-
$ polymer serve
13
-
```
14
-
15
-
## Building Your Application
16
-
17
-
```
18
-
$ polymer build
19
-
```
20
-
21
-
This will create a `build/` folder with `bundled/` and `unbundled/` sub-folders
22
-
containing a bundled (Vulcanized) and unbundled builds, both run through HTML,
23
-
CSS, and JS optimizers.
24
-
25
-
You can serve the built versions by giving `polymer serve` a folder to serve
26
-
from:
27
-
28
-
```
29
-
$ polymer serve build/bundled
30
-
```
31
-
32
-
## Running Tests
33
-
34
-
```
35
-
$ polymer test
36
-
```
37
-
38
-
Your application is already set up to be tested via [web-component-tester](https://github.com/Polymer/web-component-tester). Run `polymer test` to run your application's test suite locally.
0 commit comments