ant-tool / atool-build

:hammer: Build tool based on webpack.
391 stars 75 forks source link

SCSS configuration #307

Closed iiitmahesh closed 7 years ago

iiitmahesh commented 7 years ago

Is there SCSS configuration supported by atool-build???

yesmeck commented 7 years ago

You can extend atool-build's webpack config by youself.

Create webpack.config.js in your project's root:

var path = require("path");
module.exports = function(webpackConfig) {
  // do your own stuff on webpackConfig
  return webpackConfig;
};