mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* procesdefinitionId set show dropdown multiple process * fix sourcemap * fix test start process * fix test * changes after code review * add show dropdown optional * remove fit fdescribe * processDefinitionId in processDefinition change * improve tests
25 lines
647 B
JavaScript
25 lines
647 B
JavaScript
const webpackMerge = require('webpack-merge');
|
|
const commonConfig = require('./webpack.common.js');
|
|
|
|
module.exports = function (config) {
|
|
return webpackMerge(commonConfig, {
|
|
|
|
devtool: 'inline-source-map',
|
|
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(txt|pdf)$/,
|
|
loader: 'file-loader',
|
|
query: {
|
|
name: '[path][name].[ext]',
|
|
outputPath: (url)=> {
|
|
return url.replace('src', 'dist');
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
});
|
|
};
|