UNPKG

react-date-field

Version:
24 lines (21 loc) 400 B
'use strict'; var ExtractTextPlugin = require('extract-text-webpack-plugin') module.exports = { entry: { 'index': './index.scss', }, output: { filename: 'index.css' }, module: { loaders: [ { test: /\.scss$/, loader: ExtractTextPlugin.extract('style', 'css!autoprefixer!sass') } ] }, plugins: [ new ExtractTextPlugin('[name].css') ] }