Skip to content

Instantly share code, notes, and snippets.

View jakeguti's full-sized avatar

Jarod jakeguti

  • spain
View GitHub Profile
@jaburns
jaburns / webpack.config.js
Created April 11, 2017 22:35
Example of building only sass with webpack for legacy project
const isProduction = process.env.NODE_ENV === 'production';
module.exports = {
context: __dirname,
entry: {
styles: ['./sass/main.scss']
},
output: {
filename: 'build.css'
},