【问题标题】:how to extract vue files style into one seperate style.css file如何将 cue 文件样式提取到一个单独的 style.css 文件中
【发布时间】:2017-10-07 11:10:33
【问题描述】:

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

https://vue-loader.vuejs.org/en/configurations/extract-css.html 我的 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
    })
  ])
}

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

【问题讨论】:

    标签: webpack vue.js vuejs2 vue-loader extracttextwebpackplugin


    【解决方案1】:

    这里有一个与您的问题类似的问题,请查看

    网址(https://stackoverflow.com/a/40199096/6381510)

    但是这个更好

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

    【讨论】:

    【解决方案2】:

    您是否定义并导入了 ExtracTextPlugin?

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

    如果你能把整个代码放在这里就好了。

    【讨论】:

    • 我已经更新了我的问题,而且我注意到它在我使用 less 时效果不佳
    • @moeinrahimi 使用 Davod 的答案,你试图编译更少,但是你的 ExtracPlugin 定义了 css。
    猜你喜欢
    • 1970-01-01
    • 2016-02-28
    • 2019-12-20
    • 2023-04-07
    • 2018-02-15
    • 2011-04-26
    • 2018-07-18
    • 1970-01-01
    • 2019-12-28
    相关资源
    最近更新 更多