vaderjs 1.3.3-alpha-148 → 1.3.3-alpha-149
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 +6 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -111,7 +111,7 @@ export default function(req, res){
|
|
|
111
111
|
**/}
|
|
112
112
|
<div key="somevalue">
|
|
113
113
|
<h1>hello world</>
|
|
114
|
-
<Mycomponent ...props />
|
|
114
|
+
<Mycomponent {...props }/>
|
|
115
115
|
</div>
|
|
116
116
|
</>
|
|
117
117
|
}
|
|
@@ -122,6 +122,11 @@ export default function(req, res){
|
|
|
122
122
|
|
|
123
123
|
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!
|
|
124
124
|
|
|
125
|
+
you can always opt out of ssg using:
|
|
126
|
+
|
|
127
|
+
```js
|
|
128
|
+
export const $prerender = false;
|
|
129
|
+
```
|
|
125
130
|
We can define some metadata to be used at compile
|
|
126
131
|
|
|
127
132
|
```jsx
|
package/package.json
CHANGED