1

我在捆綁我的應用程序時遇到了這些錯誤,我無法弄清楚爲什麼它不起作用。我用的是風格裝載機之前,現在我想實現提取文本的插件,但得到這些錯誤:Webpack提取文本插件unknow word導出錯誤

enter image description here

的事情是所有的這實際上與風格裝載機工作,我只是用抽取插件替換樣式加載器,不更改任何其他加載器或插件,我搜索但沒有找到任何解決方案。

vuetify.css可以在這裏找到https://github.com/vuetifyjs/vuetify/tree/master/dist

這裏是我的index.scss:

@import "default"; 
@import "list"; 
@import "page"; 
@import "toolbar"; 

這裏是部分地方我導入文件:

import 'vuetify/dist/vuetify.min.css'; 
import './sass/index.scss'; 

的WebPack模塊配置:

​​

插件配置:

plugins: [ 

    new webpack.DefinePlugin({ 
     'process.env': { 
      NODE_ENV: JSON.stringify(process.env.NODE_ENV), 
     } 
    }), 

    new CleanWebpackPlugin([ 
     getPath('../cordova/www/**'), 
    ], { 
     root: getPath('..'), 
    }), 

    new CopyWebpackPlugin([{ 
      from: getPath('../index.html'), 
      to: getPath('../cordova/www/index.html') 
     }, 
     { 
      from: getPath('../assets'), 
      to: getPath('../cordova/www/assets/') 
     }, 
    ]), 

    new webpack.ProvidePlugin({ 
     fetch: 'imports-loader?this=>global!exports-loader?global.fetch!whatwg-fetch' 
    }), 

    new webpack.LoaderOptionsPlugin({ 
     minimize: false, 
     debug: true 
    }), 

    new ExtractTextPlugin('styles.css') 

], 

回答

1

變化/\.css$/規則這一種。

{ 
    test: /\.css$/, 
    use: ExtractTextPlugin.extract({ 
     fallback: 'style-loader', 
     use: 'css-loader' 
    }) 
    } 
+0

非常感謝,解決了我所有的問題 – Gatsbill

相關問題