Vue SSR (Server Side Rendering) with parcel?

Viewed 739

I am wondering whether anyone can point me to resources or examples on how to set up parcel for vue SSR (Server Side Rendering).

Or is Vue SSR not possible with parcel?

1 Answers

Should be as simple as installing the various libraries needed:

# Yarn
$ yarn add parcel-bundler parcel-plugin-vue @vue/component-compiler-utils babel-preset-env -D

# NPM
$ npm install parcel-bundler parcel-plugin-vue @vue/component-compiler-utils babel-preset-env --save-dev

Now you can run npx parcel and you'll be ready to go.

For more detail see: https://alligator.io/vuejs/vue-parceljs/

Related