1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-09 15:55:23 +02:00
portainer/webpack/webpack.development.js
Chaim Lev-Ari 62ac9c5a5a
fix(ci): use makefile again (#8987)
fix(makefile): revert makefile build process for 2.18 (#8977)"
2023-05-23 10:49:24 +07:00

15 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',
},
],
},
});