28 lines
595 B
JavaScript
28 lines
595 B
JavaScript
const plugins = [
|
|
[
|
|
'babel-plugin-import',
|
|
{
|
|
'libraryName': '@material-ui/core',
|
|
// Use "'libraryDirectory': ''," if your bundler does not support ES modules
|
|
'libraryDirectory': 'esm',
|
|
'camel2DashComponentName': false
|
|
},
|
|
'core'
|
|
],
|
|
[
|
|
'babel-plugin-import',
|
|
{
|
|
'libraryName': '@material-ui/icons',
|
|
// Use "'libraryDirectory': ''," if your bundler does not support ES modules
|
|
'libraryDirectory': 'esm',
|
|
'camel2DashComponentName': false
|
|
},
|
|
'icons'
|
|
]
|
|
];
|
|
|
|
module.exports = {
|
|
presets: ["react-app"],
|
|
plugins
|
|
};
|