VueFront Core. Turn your old-fashioned CMS website in to a SPA & PWA in 5 minutes
Vue powered CMS agnostic frontend framework for your old-fashioned Blog and Ecommerce site.
Show your :heart: - give us a :star:
Help us grow this project to be the best it can be!
Easily turn your Wordpress, OpenCart, Magento, PrestaShop, Shopify or any other blog/store CMS into an SPA and PWA with Vue.js in less then 5 minutes.
VueFront Tech-stack: - SPA - PWA - AMP - GraphQL + Apollo - VueJS + Nuxt - Atomic Design - JAMstack
You or your clients with a site on an old-fashiond CMS. If you want to try new technology, outrun your competition and just provide a better user experience, but not ready to invest thousands of dollars, VueFront is for you.
It works out-of-the-box: - You get a shiny new Web APP. - You get to keep your current CMS admin panel. - You can always switch back to your old site.
Give it a try, what do you have to lose?
# Create VueFront app. replace with vuefront yarn create vuefront-app # OR npx create-vuefront-appyarn dev
build your App ```bash
yarn build ```
Copy the contents of your app from
/distto your root folder of your CMS where it is hosted.
Configure your hosting to load
index.htmlfirst. This can be a bit tricky.
For OpenCart CMS you can use this:
# for VueFront to work you need to load index.html before any other index file DirectoryIndex index.html index.php
location / { try_files $uri $uri/ /index.html; } ```