VueJS + WebpackSimple无法编译SASS

时间:2018-06-30 22:23:24

标签: webpack vue.js sass vuejs2

我通过webpack进行了VueJs的全新安装,尝试将SASS设置为CSS。 Docs说它已经准备好进行开发,但是webpack只在SCSS上有效,而不能在SASS上有效。有人可以分享一些kwnolegde如何使用lang="sass"吗?

我也遵循了https://vue-loader.vuejs.org/guide/pre-processors.html#sass-vs-scss上的教程,但没有结果

Webpack文件

    var path = require('path')
var webpack = require('webpack')

module.exports = {
  entry: './src/main.js',
  output: {
    path: path.resolve(__dirname, './dist'),
    publicPath: '/dist/',
    filename: 'build.js'
  },
  module: {
    rules: [
      {
        test: /\.css$/,
        use: ['vue-style-loader', 'css-loader']
      },
      {
        test: /\.scss$/,
        use: ['vue-style-loader', 'css-loader', 'sass-loader']
      },
      {
        test: /\.sass$/,
        use: ['vue-style-loader', 'css-loader', 'sass-loader?indentedSyntax']
      },
      {
        test: /\.vue$/,
        loader: 'vue-loader',
        options: {
          loaders: {
            // Since sass-loader (weirdly) has SCSS as its default parse mode, we map
            // the "scss" and "sass" values for the lang attribute to the right configs here.
            // other preprocessors should work out of the box, no loader config like this necessary.
            scss: ['vue-style-loader', 'css-loader', 'sass-loader'],
            sass: [
              'vue-style-loader',
              'css-loader',
              'sass-loader?indentedSyntax'
            ]
          }
          // other vue-loader options go here
        }
      },
      {
        test: /\.js$/,
        loader: 'babel-loader',
        exclude: /node_modules/
      },
      {
        test: /\.(png|jpg|gif|svg)$/,
        loader: 'file-loader',
        options: {
          name: '[name].[ext]?[hash]'
        }
      }
    ]
  },
  resolve: {
    alias: {
      vue$: 'vue/dist/vue.esm.js'
    },
    extensions: ['*', '.js', '.vue', '.json']
  },
  devServer: {
    historyApiFallback: true,
    noInfo: true,
    overlay: 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
    })
  ])
}

错误

无法编译。

./ node_modules / css-loader!./ node_modules / vue-loader / lib / style-compiler?{“ vue”:true,“ id”:“ data-v-04c2046b”,“ scoped”:false, “ hasInlineConfig”:false}!./ node_modules / sass-loader / lib / loader.js!./ node_modules / vue-loader / lib / selector.js?type = styles&index = 0!./ src / App.vue 找不到模块:错误:无法解析“ C:\ Users \ Damian \ Desktop \ Vue \ karuzela \ src”中的“ ../img/Group3.png”  @ ./node_modules/css-loader!./node_modules/vue-loader/lib/style-compiler?{"vue":true,"id":"data-v-04c2046b","scoped":false,"hasInlineConfig “:false}!./ node_modules / sass-loader / lib / loader.js!./ node_modules / vue-loader / lib / selector.js?type = styles&index = 0!./ src / App.vue 7:1073- 1101  @ ./node_modules/vue-style-loader!./node_modules/css-loader!./node_modules/vue-loader/lib/style-compiler?{"vue":true,"id":"data-v-04c2046b “,” scoped“:false,” hasInlineConfig“:false}!./ node_modules / sass-loader / lib / loader.js!./ node_modules / vue-loader / lib / selector.js?type = styles&index = 0!。 /src/App.vue  @ ./src/App.vue  @ ./src/main.js  @ multi(webpack)-dev-server / client?http://localhost:8080 webpack / hot / dev-server ./src/main.js

尝试使用这种语法

.carousel {
  background: url(../img/Group3.png);
  min-height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 0 100px 0;
  border-radius: 4px;
  **&__row** {
    max-width: 1300px;
    margin: 0 auto;
    margin-top: -100px;
    text-align: left;
    .slick-track {
      padding: 0 0 70px 0;
    }}

1 个答案:

答案 0 :(得分:1)

首先安装sass支持:npm i --save-dev node-sass sass-loader

相关问题