fix identity auth page styling

This commit is contained in:
Shawn Erquhart
2017-12-07 13:02:50 -05:00
parent a59f00cfaf
commit 91307a06ce
4 changed files with 21 additions and 2 deletions

View File

@ -3,6 +3,7 @@ const path = require('path');
const webpack = require('webpack');
const merge = require('webpack-merge');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const WriteFilePlugin = require('write-file-webpack-plugin');
const HOST = 'localhost';
const PORT = '8080';
@ -47,6 +48,7 @@ module.exports = merge.smart(require('./webpack.base.js'), {
filename: '[name].css',
disable: true,
}),
new WriteFilePlugin(),
],
devtool: 'source-map',
devServer: {