问题 in a nuxt layout (default.vue) I want to load an image and a css file from assets folder the image loaded successfully, but the css file not, why? /layouts/default.vue <template> <img src="~assets/photo.jpg" /> <!-- converted to /_nuxt/assets/photo.jpg and loaded successfully --> </template> <script> export default{ head:{ link: [ { rel: 'stylesheet', href: '~assets/style.css' }] } } </sript> when I view the source code: <link href="~assets/style.css" /> and it fails to be loaded also