mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-20 10:09:07 +00:00
18 lines
411 B
JavaScript
18 lines
411 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
'postcss-import': {
|
|
resolve: function(id) {
|
|
// Handle ~ imports for node_modules
|
|
if (id.startsWith('~')) {
|
|
try {
|
|
return require.resolve(id.substring(1));
|
|
} catch (e) {
|
|
return id;
|
|
}
|
|
}
|
|
return id;
|
|
},
|
|
},
|
|
cssnano: process.env.NODE_ENV === 'production' ? {} : false,
|
|
},
|
|
};
|