At the moment, I am utilizing
to compile Vue into a component library for integration into other projects.vue-cli-service build --target lib --name myLib [entry]
Nevertheless, it only produces four files which are:
dist/myLib.umd.min.js
dist/myLib.umd.js
dist/myLib.common.js
dist/myLib.css
There is no assets/
directory where I typically store fonts within the dist/
folder.
What specific parameters or adjustments should I be making in order to include fonts with the library?