Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/webpack/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/vue.js/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Webpack 如何将vue文件样式提取到一个单独的style.css文件中_Webpack_Vue.js_Vuejs2_Vue Loader_Extracttextwebpackplugin - Fatal编程技术网

Webpack 如何将vue文件样式提取到一个单独的style.css文件中

Webpack 如何将vue文件样式提取到一个单独的style.css文件中,webpack,vue.js,vuejs2,vue-loader,extracttextwebpackplugin,Webpack,Vue.js,Vuejs2,Vue Loader,Extracttextwebpackplugin,我使用的是vue loader,默认情况下,对于每个vue文件,视图中都有一个样式标记,这不是一件好事, 根据vue loader文档,我可以这样做 我的webpack-config.js文件 var path = require('path') var webpack = require('webpack') const ExtractTextPlugin = require("extract-text-webpack-plugin"); module.exports = { e

我使用的是vue loader,默认情况下,对于每个vue文件,视图中都有一个样式标记,这不是一件好事, 根据vue loader文档,我可以这样做

我的webpack-config.js文件

   var path = require('path')
var webpack = require('webpack')
const ExtractTextPlugin = require("extract-text-webpack-plugin");

module.exports = {
  entry: './src/main.js',
  output: {
    path: path.resolve(__dirname, './dist'),
    publicPath: '/dist/',
    filename: 'build.js'
  },
  module: {
    rules: [
      {
        // this one extracts css files that imported to styles.css
        test: /\.css$/,
        use: ExtractTextPlugin.extract({
          fallback: 'style-loader' ,
          use: "css-loader"
        })
      },
      {
         // and this dude here extracts component's styles into styles.css
        test: /\.vue$/,
        loader: 'vue-loader',
        options: {
          loaders: {
                  css: ExtractTextPlugin.extract({
          use: 'css-loader',
          fallback: 'vue-style-loader' 
        })
          }
        }
      },
      {
        test: /\.js$/,
        loader: 'babel-loader',
        exclude: /node_modules/
      },
      {
        test: /\.(png|jpg|gif|svg)$/,
        loader: 'file-loader',
        options: {
          name: '[name].[ext]?[hash]'
        }
      },
      {
       test: /\.(woff|woff2|eot|ttf|svg)(\?.*$|$)/,
       loader: 'url-loader?importLoaders=1&limit=100000'
     }
    ]
  },

      plugins: [
    new ExtractTextPlugin("styles.css"),
  ],
  resolve: {
    alias: {
      'vue$': 'vue/dist/vue.esm.js'
    }
  },
  devServer: {
    historyApiFallback: true,
    noInfo: true
  },
  performance: {
    hints: false
  },
  devtool: '#eval-source-map'
}

if (process.env.NODE_ENV === 'production') {
  module.exports.devtool = '#source-map'
  // http://vue-loader.vuejs.org/en/workflow/production.html
  module.exports.plugins = (module.exports.plugins || []).concat([
    new webpack.DefinePlugin({
      'process.env': {
        NODE_ENV: '"production"'
      }
    }),
    new webpack.optimize.UglifyJsPlugin({
      sourceMap: true,
      compress: {
        warnings: false
      }
    }),
    new webpack.LoaderOptionsPlugin({
      minimize: true
    })
  ])
}

但这段代码根本不起作用,行为也是一样的

您是否定义并导入了ExtracTextPlugin

  plugins: [
   new ExtractTextPlugin('style.css'),
  ],

如果你能把整个代码放在这里,那就太棒了。

这里有一个问题与你的问题相似,请查看

Url()

但这更好

 less: ExtractTextPlugin.extract({
              loader: 'css-loader!less-loader?indentedSyntax',
              fallbackLoader: 'vue-style-loader',
            }),

我已经更新了我的问题,而且我注意到当我使用less@moeinrahimi使用Davod的答案,您试图编译更少的代码,但是您的插件定义了css
ExtractTextPlugin
没有这些选项,它从
throw new\u ValidationError2.default(ajv.errors,name)中抛出
false
这是如何工作的?