UI structure (basic cards + css modules setup)
This commit is contained in:
@ -10,6 +10,10 @@ module.exports = {
|
||||
loader: 'file?name=/[hash].[ext]'
|
||||
},
|
||||
{ test: /\.json$/, loader: 'json-loader' },
|
||||
{
|
||||
test: /\.css$/,
|
||||
loader: 'style!css?modules!postcss'
|
||||
},
|
||||
{
|
||||
loader: 'babel',
|
||||
test: /\.js?$/,
|
||||
@ -23,6 +27,10 @@ module.exports = {
|
||||
]
|
||||
},
|
||||
|
||||
postcss: [
|
||||
require('postcss-cssnext')
|
||||
],
|
||||
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch'
|
||||
|
Reference in New Issue
Block a user