0dba9b709d
* Revert "build/makefile fixes from develop (#8926)" This reverts commit65d6098613. * Revert "chore(build): remove grunt and add makefile [EE-4824] (#8803)" This reverts commit5fd36ee986.
16 lines
325 B
JavaScript
16 lines
325 B
JavaScript
const { merge } = require('webpack-merge');
|
|
const commonConfig = require('./webpack.common.js');
|
|
|
|
module.exports = merge(commonConfig, {
|
|
mode: 'development',
|
|
devtool: 'eval-source-map',
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(woff|woff2|eot|ttf|ico)$/,
|
|
type: 'asset/resource',
|
|
},
|
|
],
|
|
},
|
|
});
|