webpack-style-preset
v0.7.0
Published
Easily add CSS, SASS to your webpack config
Downloads
19
Readme
webpack-style-preset
Easily add CSS, SASS to your webpack config
Install
npm install --save-dev webpack-style-preset
for Yarn:
yarn add --dev webpack-style-preset
Add to Webpack config
const withSass = require("webpack-style-preset");
// your base webpack config goes here
const baseConfig = {
/// ...
};
// extend webpack config
const config = withSass(baseConfig);
module.exports = config;