Vue.js之構建專案初始步驟(二)
阿新 • • 發佈:2019-01-02
接上回:
報錯解決:
This dependency was not found:
* common/stylus/index.styl in ./src/main.js
解決方案:
在這個路徑資料夾下:D:\Django\Vue_Project\vue-music\build\webpack.base.conf.js:
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'@': resolve('src'),#所以當前路徑不能用./代替
// 'common':resolve('src/common' )
}
},
在main.js檔案中:
import 'common/stylus/index.styl'
當然首先要把stylus還有stylus-loader安裝一下,就沒有問題了。
解決問題時,前後端報錯都要看一下,要不然會浪費很多時間!
rules: {
// allow async-await
'generator-star-spacing': 'off',
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
"no-multiple-empty-lines": [1, {"max": 2}],//空行最多不能超過2行
}
這樣報錯消失!