insomnia/packages/insomnia-app/.storybook/webpack.config.js
Dimitri Mitropoulos 5f4c19da35
[TypeScript] Phase 1 & 2 (#3370)
Co-authored-by: Opender Singh <opender.singh@konghq.com>
2021-05-12 18:35:00 +12:00

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;
};