document necessary css loaders
Copy the CSS config from the test into the docs, because without this the same code fails to build.pull/2748/head
parent
48e17a0001
commit
5c68d18081
|
@ -18,6 +18,12 @@ module.exports = {
|
||||||
path: path.resolve(__dirname, 'dist'),
|
path: path.resolve(__dirname, 'dist'),
|
||||||
filename: 'app.js'
|
filename: 'app.js'
|
||||||
},
|
},
|
||||||
|
module: {
|
||||||
|
rules: [{
|
||||||
|
test: /\.css$/,
|
||||||
|
use: ['style-loader', 'css-loader']
|
||||||
|
}]
|
||||||
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
new MonacoWebpackPlugin()
|
new MonacoWebpackPlugin()
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue