question: using vue-cli3 to initialize the project, does it not include webpack-related configuration? How should you configure loader such as url-loader when using vue.config.js?
add: css background picture and font icon introduce error
question: using vue-cli3 to initialize the project, does it not include webpack-related configuration? How should you configure loader such as url-loader when using vue.config.js?
add: css background picture and font icon introduce error
encounter this problem at the same time
use vue inspect-- rule fonts
to see
loader
/2018-12-10*/
font-face
not found
I see you are using a scss preprocessor, so try changing the path to the referenced eot file relative to the page you are applying.
I also found the cause of the problem when I was translating this src attribute.
Previous: The elasticsearch index is not valid?
Next: The project failed to be pushed to its own Git server.
The font folder is placed in src and packaged through webpack. After packaging through , font is placed under the dist folder, but the reference address is not the same as the packaged address. There is an extra css path in front actually it is OK to...