当前位置: 首页 > 知识库问答 >
问题:

VueJS WebpackSimple未编译SASS

谭畅
2023-03-14

我已经通过webpack简单裸露了VueJs的新安装,试图将SASS设置为CSS。文档说它已经准备好开发了,但是webpack只适用于SCSS,而不适用于SASS。有人能分享一下如何使用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
    })
  ])
}

错误

未能编译。

./节点\模块/css加载器/节点\模块/vue加载程序/lib/style编译器?{“vue”:true,“id”:“data-v-04c2046b”,“scoped”:false,“hasInlineConfig”:false}/节点_模块/sass加载程序/lib/loader。js/节点_模块/vue加载程序/lib/selector。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个答案

唐焕
2023-03-14

首先安装sass支持:npm i--保存开发节点sass sass加载程序

 类似资料:
  • 我正在尝试学习java的这个新GWT部分。。。 我做了我的第一个简单的应用程序 我命名了 我的模块:-HelloWorld 我收到以下错误: 2014年4月18日下午4:00:53爪哇。util。首选项。WindowsPreferences警告:无法在根0x8000002处打开/创建prefs根节点Software\JavaSoft\prefs。Windows RegCreateKeyEx(…)返

  • 我是新手,在尝试使用axios获取api数据时遇到编译失败的错误。 Axios。js: Cards.js: 错误: 未能编译。 ./src/Axios。js语法错误:C:\Users\suhai\Documents\evP\impend\h\highlancer\src\Axios。js:意外令牌(1:18) 1 |从axios导入axios | ^ 2| 3 | const instance=a

  • 我在android studio中使用libgdx配置了一个桌面应用程序,它不编译。我也在另一台pc上测试了它,在那里它运行了。当我启动它时,我会得到以下错误代码:

  • 我在mac book pro上,新安装的优胜美地。它大约有两年的历史,我刚刚安装了Xcode。我打开了一个全新的项目,并运行了它,但我得到的只是一个巨大的黑屏,这需要很长时间才能加载。当它这样做时,它会跳入Iphone的正常菜单部分,应用程序无法运行! 我刚刚深入研究了iOS开发。

  • 问题演示 我的任务是创建一个动态Web项目,该项目扫描来自服务器的文档,通过我的程序并将图片从文本中拆分。我需要OpenCV库。我的代码在eclipse中运行良好,工作良好。现在,我需要将库作为全局模块加载到jboss中,而不是在eclipse中,以便服务器始终知道需要加载哪些库。我所做的一切都是这个链接描述的: 有人知道为什么这是个问题吗?是否存在验证问题?Eclipse在将一个新类放入open

  • 我正在做一个游戏,我现在正在写一个着色器来反射光从一个物体,我不断得到错误消息: 任何帮助都将不胜感激。