We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a435aa commit 1312fdeCopy full SHA for 1312fde
README.md
@@ -102,6 +102,13 @@ createApp().use(VueShepherdPlugin).mount('#app');
102
</script>
103
```
104
105
+## SSR
106
+For server side rendering project, you should import the `vue-shepherd.ssr.js` file.
107
+
108
+```js
109
+import VueShepherd from 'vue-shepherd/dist/vue-shepherd.ssr.js';
110
+```
111
112
## Directives
113
114
WIP
package.json
@@ -19,8 +19,7 @@
19
"start": "yarn serve",
20
"test:e2e": "vue-cli-service test:e2e"
21
},
22
- "main": "dist/vue-shepherd.ssr.js",
23
- "browser": "dist/vue-shepherd.min.js",
+ "main": "dist/vue-shepherd.esm.js",
24
"module": "src/entry.js",
25
"unpkg": "dist/vue-shepherd.min.js",
26
"files": [
0 commit comments