Arseny Garelyshev
Arseny Garelyshev
> The ability to override views has been added via `viewRenderers` in v6. The issue is that it has not yet been documented well and the only single example of...
> > Well, I need a "quarter" view, which I thought would be an easy job, basically taking month view and going from 12 to 4 items. > > Oh,...
> It let me think about [the following demo](https://mui.com/x/react-date-pickers/date-picker/#customized-day-rendering) > > But not sure to understand what you mean by a "week peaker". Maybe providing more context about why you...
For now, I've dealt with this by adding it to `transpilePackages` in my Next.js app: **next.config.js** ```tsx /** @type {import('next').NextConfig} */ module.exports = { reactStrictMode: true, transpilePackages: ['@mui/x-charts'], }; ```
No (at least I did not need to include them in the list). I'm unsure on whether it's done for dependencies automatically or not.
Updated to `@mui/[email protected]`, tried removing charts from `transpilePackages`, now when importing charts like this: ```ts import { PieChart } from "@mui/x-charts"; ``` I get ``` Error: Cannot find module /home/project/node_modules/@mui/x-charts/PieChart'...