mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-16 16:14:43 -04:00
Config webpack css hash in production
This commit is contained in:
parent
cd5977cd5f
commit
971bfe29f8
3 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
var baseConfig = require('./webpackBaseConfig');
|
||||
var ExtractTextPlugin = require("extract-text-webpack-plugin");
|
||||
|
||||
module.exports = baseConfig;
|
||||
module.exports = Object.assign({}, baseConfig, {
|
||||
plugins: baseConfig.plugins.concat([
|
||||
new ExtractTextPlugin("[name].css")
|
||||
])
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue