vue-foundation
vue-foundation copied to clipboard
Issue with Foundation causing server error and compile error
I know this is a Foundation issue but I wanted to throw it out there for anyone who clones this repo and runs into the same issue I ran into when running npm start.
Issue 1:
ERROR Failed to compile with 1 errors
This dependency was not found:
* zf/foundation.util.core in ./src/foundation.js
To install it, you can run: npm install --save zf/foundation.util.core
Issue 2:
Browser opens but the page displays the message Cannot Get /
To solve this problem and get successful compilation navigate to ./src/foundation.js and update line 10 from import { rtl, GetYoDigits, transitionend } from 'zf/foundation.util.core'; to import { rtl, GetYoDigits, transitionend } from 'zf/foundation.core.util';
I did as mentioned above but I get:
ERROR Failed to compile with 1 errors
This dependency was not found:
* zf/foundation.core.util in ./src/foundation.js
To install it, you can run: npm install --save zf/foundation.core.util
and if I try npm install --save zf/foundation.core.util it does not work either:
npm ERR! Error while executing:
npm ERR! /usr/local/bin/git ls-remote -h -t ssh://[email protected]/zf/foundation.core.util.git
npm ERR!
npm ERR! Warning: Permanently added the RSA host key for IP address '140.82.114.4' to the list of known hosts.
npm ERR! [email protected]: Permission denied (publickey).
npm ERR! fatal: Could not read from remote repository.
npm ERR!
npm ERR! Please make sure you have the correct access rights
npm ERR! and the repository exists.
npm ERR!
npm ERR! exited with error code: 128