You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expected I can use this plugin for including assets in Webpack build:
import html from 'https://example.com/'
export default {
data () {
return {
html
}
}
}
But it fails:
Downloading https://example.com... (repeated 2 times) 23:26:48
ERROR Failed to compile with 1 errors friendly-errors 23:26:52
This dependency was not found: friendly-errors 23:26:52
friendly-errors 23:26:52
* https://example.com/ in ./node_modules/babel-loader/lib??ref--2-0!./node_modules/vue-loader/lib??vue-loader-options!./pages/pro-pruvodce.vue?vue&type=script&lang=js&
friendly-errors 23:26:52
To install it, you can run: npm install --save https://example.com/
Do I use it incorrectly? How to do it correctly?
My motivation for using import for this (and not load it in the app) is to include it in app's build sources what will be deployed to a hosting together.
The text was updated successfully, but these errors were encountered:
the url needs to include a file path, e.g. http://example.com/index.html, and you need to configure your bundle to handle files that are not JavaScript modules.
I expected I can use this plugin for including assets in Webpack build:
But it fails:
Do I use it incorrectly? How to do it correctly?
My motivation for using import for this (and not load it in the app) is to include it in app's build sources what will be deployed to a hosting together.
The text was updated successfully, but these errors were encountered: