Refactor CSS modules out

This commit is contained in:
Jori Lallo
2017-09-10 16:27:15 -04:00
parent 20cab4df91
commit 2140a0698a
36 changed files with 695 additions and 871 deletions

View File

@ -29,7 +29,7 @@ module.exports = {
include: [
path.join(__dirname, 'frontend'),
path.join(__dirname, 'shared'),
]
],
},
{ test: /\.json$/, loader: 'json-loader' },
// inline base64 URLs for <=8k images, direct URLs for the rest
@ -38,6 +38,10 @@ module.exports = {
test: /\.woff$/,
loader: 'url-loader?limit=1&mimetype=application/font-woff&name=public/fonts/[name].[ext]',
},
{
test: /\.css$/,
loader: 'style-loader!css-loader?sourceMap',
},
{ test: /\.md/, loader: 'raw-loader' },
],
// Silence warning https://github.com/localForage/localForage/issues/599