Closed ghost closed 6 years ago
[...]
<Tweet :id="'692527862369357824'"/>
</div>
</template>
<script>
import 'babel-polyfill'
import { Tweet, Moment, Timeline } from 'vue-tweet-embed'
export default {
components: {
Tweet,
},
[...]
}
</script>
works for me w/ the following mode in nuxt.config.js
module.exports = {
mode: 'ssr',
build: {
vendor: [
'babel-polyfill',
[...]
],
},
}