Skip to content

Latest commit

 

History

History
executable file
·
43 lines (31 loc) · 741 Bytes

README.md

File metadata and controls

executable file
·
43 lines (31 loc) · 741 Bytes

Total.js + Vue.js + Nuxt + Vuetify + Vue-Router

Installation

  1. Install the total.js in project directory
npm install 
  1. Install the dependencies in /vue
npm install
  1. Start the server in debug mode with server side rendering
npm run dev
  1. Start the server in production mode
npm run prod
  1. Visit http://localhost:8000

Very Important!!!

Fix in stylus-loader module in file patchcache.js function normalizePaths(paths) to destination source code:

function normalizePaths(paths) {
for(var i in paths) {
  if(typeof paths[i]!=='function') 
    paths[i] = path.normalize(paths[i]);
 // else console.log('function',paths[i]);
}
return paths;
}