vaderjs 1.3.3-alpha-103 → 1.3.3-alpha-104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -126,7 +126,7 @@ export default function(req, res){
|
|
|
126
126
|
|
|
127
127
|
### ServerSide Site Generation (SSG)
|
|
128
128
|
|
|
129
|
-
Vader compiles all code to a static index.html page so your visitors will never have to wait for the page to load
|
|
129
|
+
Vader compiles all code to a static index.html page so your visitors will never have to wait for the page to load, it then rehydrates the page reapplying functionality!
|
|
130
130
|
|
|
131
131
|
We can define some metadata to be used at compile
|
|
132
132
|
|
|
@@ -141,7 +141,7 @@ export const $metadata = {
|
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
```
|
|
144
|
-
Vader will take the metadata and place it inside of the compiled html
|
|
144
|
+
Vader will take the metadata and place it inside of the compiled html file.
|
|
145
145
|
|
|
146
146
|
### Styling
|
|
147
147
|
|
package/package.json
CHANGED