0π
β
Fixed the issue for future reference or anyone interested.
The issue was with file-loader & url-loader, I updated these two dependencies and then changed the webpack.config.js config to:
{
test: /\.(png|jpg|gif)$/,
use: [
{
loader: 'url-loader',
options: {
limit: 8192
}
}
]
}
Seemed I was reading an old config on the tutorial I was following. Itβs important to check the most up to date docs/help/readme.
π€John107
0π
Seems like the issue is in you app.js
line 6. App should be in caps like so:
import Vue from βvueβ;
import App from β./App.vueβ;
const app = new Vue({
el: "#app",
template: '<App/>',
components: { App }
})
π€aks
0π
try this:
App.js
const app = new Vue({
el: "#app",
render: h => h(App)
})
Source:stackexchange.com