tinajs / tina

:dancer: 一款轻巧的渐进式微信小程序框架
https://tina.js.org
Apache License 2.0
1.33k stars 133 forks source link

有比较好的支持sass的方案吗? #21

Open lmw6412036 opened 5 years ago

imyelo commented 5 years ago

使用 sass-loader 正常地配置 webpack 即可。

参考:

callmesoul commented 5 years ago

// webpack.config.js

{
        test: /\.(css|wxss|scss)$/,
        exclude: /node_modules/,
        use: [
          loaders.style,
          {
            loader:'sass-loader',
            options: {
              sourceMap: true
            }
          }
        ],
      },