将Sass与Vue-loader Webpack堆栈正确集成

时间:2018-06-30 22:38:45

标签: webpack vue.js sass

我是这个堆栈的新手,并且仍然学习将Webpack与vue结合使用的复杂性,因此我下载了一个引导示例应用程序来开始使用。我的第一个需求是应用sass,因为此示例没有它,但我很茫然。

首先,Webpack的配置内容非常令人困惑。似乎没有通常的webpack配置文件,而是有一个用于配置的目​​录和一个似乎可以处理所有这些问题的构建目录。

我正在猜测,但是似乎真正适用于将sass添加到堆栈中的所有演练ive的唯一文件是webpack.base.conf.js:

'use strict'
const path = require('path')
const utils = require('./utils')
const config = require('../config')
const vueLoaderConfig = require('./vue-loader.conf')

function resolve (dir) {
  return path.join(__dirname, '..', dir)
}

const createLintingRule = () => ({
  test: /\.(js|vue)$/,
  loader: 'eslint-loader',
  enforce: 'pre',
  include: [resolve('test')],
  options: {
    formatter: require('eslint-friendly-formatter'),
    emitWarning: !config.dev.showEslintErrorsInOverlay
  }
})

module.exports = {
  context: path.resolve(__dirname, '../'),
  entry: {
    app: './src/main.js'
 },
 output: {
 path: config.build.assetsRoot,
 filename: '[name].js',
 publicPath: process.env.NODE_ENV === 'production'
   ? config.build.assetsPublicPath
   : config.dev.assetsPublicPath
 },
 resolve: {
   extensions: ['.js', '.vue', '.json'],
   alias: {
     'vue$': 'vue/dist/vue.esm.js',
     '@': resolve('src'),
  }
 },
module: {
  rules: [
  ...(config.dev.useEslint ? [createLintingRule()] : []),
  {
    test: /\.vue$/,
    loader: 'vue-loader',
    options: vueLoaderConfig
  },
  {
    test: /\.js$/,
    loader: 'babel-loader',
    include: [resolve('src'), resolve('test')]
  },
  {
      test: /\.scss$/,
      use: [
        'vue-style-loader',
        'css-loader',
        {
          loader: 'sass-loader',
          options: {
            indentedSyntax: true
          }
        }
      ]
  },
  {
    test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
    loader: 'url-loader',
    options: {
      limit: 10000,
      name: utils.assetsPath('img/[name].[hash:7].[ext]')
    }
  },
  {
    test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
    loader: 'url-loader',
    options: {
      limit: 10000,
      name: utils.assetsPath('media/[name].[hash:7].[ext]')
    }
  },
  {
    test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
    loader: 'url-loader',
    options: {
      limit: 10000,
      name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
    }
  }
  ]
},
node: {
  // prevent webpack from injecting useless setImmediate polyfill 
 because Vue
// source contains it (although only uses it if it's native).
setImmediate: false,
// prevent webpack from injecting mocks to Node native modules
// that does not make sense for the client
dgram: 'empty',
fs: 'empty',
net: 'empty',
tls: 'empty',
child_process: 'empty'
}
}

您会在规则中看到,我试图添加演练内容,然后在App.vue文件上调用了导入:

<style lang="scss" scoped>
 @import 'assets/sass/main.scss'
</style>

该站点加载时似乎没有找到sass文件,但似乎无法找到它,但是我看不到加载的样式,也没有迹象表明在我编辑甚至进行重建时都编译了该文件。

请帮助,webpack和vue loader架构看起来确实令人困惑。

1 个答案:

答案 0 :(得分:1)

结果证明我是从sass文件中定位主体,并且因为vue-loader是在div上实例化的,所以无法从以这种方式安装的sass中定位父元素。通过定位#app,样式就可以了!