第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

啟動(dòng)報(bào)錯(cuò)You may need an appropriate loader to handle this file type. 都已經(jīng)加載了

const?path?=?require('path')
const??{?VueLoaderPlugin?}??=?require('vue-loader')
const?HTMLPlugin?=?require('html-webpack-plugin')
const?webpack?=?require('webpack')

const?isDev?=?process.env.NODE_ENV?===?'development'

const?config?=?{
????target:?'web',
????entry:?path.join(__dirname,?'src/index.js'),
????output:?{
????????filename:?'bundle.js',
????????path:?path.join(__dirname,?'dist')
????},
????module:{
????????rules:?[
????????????{
??????????????test:?/\.vue$/,
??????????????use:?[
??????????????????{loader:?'vue-loader'}
??????????????]
????????????},

????????]
????},
????plugins:?[
????????new?VueLoaderPlugin(),
????????new?webpack.DefinePlugin({
????????????'process.env':?{
????????????????NODE_ENV:?isDev???'"development"'?:?'"production"'
????????????}
????????}),
????????new?HTMLPlugin()

????]
}

if(isDev){
??config.devServer?=?{
??????port:?8000,
??????host:?'0.0.0.0',
??????overlay:?{
??????????errors:?true
??????},
??????open:?true
??}
}

module.export?=?config


正在回答

3 回答

你的報(bào)錯(cuò)應(yīng)該是css內(nèi)容無法解析吧,15版的?vue-loader?會(huì)出現(xiàn)這種情況,你還需要把
{
????test;?/\.css$/,
????loader:?'css-loader'
}
也加入到?rules?數(shù)組里面。


1 回復(fù) 有任何疑惑可以回復(fù)我~

方法一: 把vue-loader版本替換為14

方法二: 根據(jù)vue-loader官方提供的15版本的聲明方法,定義plugin。

const?VueLoaderPlugin?=?require('vue-loader/lib/plugin')??
module.exports?=?{
??module:?{
????rules:?[
??????//?...?other?rules
??????{
????????test:?/\.vue$/,
????????loader:?'vue-loader'
??????}
????]
??},
??plugins:?[
????new?VueLoaderPlugin()???//15版本需指定plugin
??]}


4 回復(fù) 有任何疑惑可以回復(fù)我~
#1

主打情歌

這個(gè)是正解
2018-12-05 回復(fù) 有任何疑惑可以回復(fù)我~

把vue-loader的版本替換成^14.2.0試一下

0 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消

啟動(dòng)報(bào)錯(cuò)You may need an appropriate loader to handle this file type. 都已經(jīng)加載了

我要回答 關(guān)注問題
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)