我在a.vue檔中
<style> @import '../css/bootstrap.css'; </style>
但是卻提示報錯,
你沒有設定正確的loader去載入字型
cnpm i --save-dev url-loader
在webpack.config.js裡module.rules:輸入
{ test: /\.(eot|svg|ttf|woff|woff2)$/, loader:"url-loader", options: { name: '[name].[ext]?[hash]' } }
重啟 npm run dev。
npm run dev
在 index.html 中使用 link 標籤就可以
你沒有設定正確的loader去載入字型
在webpack.config.js裡module.rules:輸入
重啟
npm run dev
。在 index.html 中使用 link 標籤就可以