0👍
This happens because you do
import config from "./config.yml";
That statement tries to parse your YAML file as JavaScript source. Drop the line and do fs.readFile("./config.yml", …
instead.
- [Vuejs]-Cloudflare doesn't block the access to my nuxt app
- [Vuejs]-Can you use VueJS transition-group functionality with pug template?
Source:stackexchange.com