Merge pull request #25 from evmar/docs-css

document necessary css loaders
This commit is contained in:
Alexandru Dima 2018-08-10 14:17:54 +02:00 committed by GitHub
commit 466bc4f0dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,6 +18,12 @@ module.exports = {
path: path.resolve(__dirname, 'dist'),
filename: 'app.js'
},
module: {
rules: [{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}]
},
plugins: [
new MonacoWebpackPlugin()
]