- Install the total.js in project directory
npm install
- Install the dependencies in /vue
npm install
- Start the server in debug mode with server side rendering
npm run dev
- Start the server in production mode
npm run prod
- Visit http://localhost:8000
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;
}