Files
DevToysWeb/.babelrc
rusconn 55fd4a6473 perf(dev): speed up dev server
Avoid compiling the entire of mui library by using babel.
2023-05-28 23:55:37 +09:00

37 lines
720 B
Plaintext

// https://emotion.sh/docs/css-prop##babel-preset
// https://mui.com/guides/minimizing-bundle-size/#option-2
{
"presets": [
[
"next/babel",
{
"preset-react": {
"runtime": "automatic",
"importSource": "@emotion/react"
}
}
]
],
"plugins": [
[
"babel-plugin-import",
{
"libraryName": "@mui/material",
"libraryDirectory": "",
"camel2DashComponentName": false
},
"core"
],
[
"babel-plugin-import",
{
"libraryName": "@mui/icons-material",
"libraryDirectory": "",
"camel2DashComponentName": false
},
"icons"
],
["@emotion/babel-plugin"]
]
}