mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
5f4c19da35
Co-authored-by: Opender Singh <opender.singh@konghq.com>
14 lines
328 B
JavaScript
14 lines
328 B
JavaScript
/** @type { import('webpack').Configuration } */
|
|
module.exports = ({ config }) => {
|
|
config.module.rules.push({
|
|
test: /\.less$/,
|
|
use: [
|
|
'style-loader',
|
|
{ loader: 'css-loader', options: { importLoaders: 1 } },
|
|
{ loader: 'less-loader', options: { noIeCompat: true } },
|
|
],
|
|
});
|
|
|
|
return config;
|
|
};
|