Possible error in /lib/app/components/nuxt.js
[issue link]At the very least, my linter doesn’t like it.
I assume that the single-quotes (') should be escaped (\') or replaced by double-quotes (") at
(components.ErrorPage.indexOf('~') === 0 || components.ErrorPage.indexOf('@') === 0)
because the whole thing is inside a single-quoted string. Or maybe just
/^[~@]/.test(components.ErrorPage)
I think this may possibly have fixed https://github.com/nuxt-community/create-nuxt-app/issues/16 for me.