mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-26 05:12:46 -07:00
6135fd7e1b
Co-authored-by: Valerio Ageno <valerio.ageno@qonto.com> Co-authored-by: Marco Pasqualetti <marco.pasqualetti@live.com> Co-authored-by: Marco Pasqualetti <24919330+marcalexiei@users.noreply.github.com>
17 lines
366 B
TypeScript
17 lines
366 B
TypeScript
import type { TuonoConfig } from 'tuono/config'
|
|
import mdx from '@mdx-js/rollup'
|
|
|
|
const config: TuonoConfig = {
|
|
vite: {
|
|
alias: {
|
|
'@': 'src',
|
|
'@tabler/icons-react': '@tabler/icons-react/dist/esm/icons/index.mjs',
|
|
},
|
|
plugins: [
|
|
{ enforce: 'pre', ...mdx({ providerImportSource: '@mdx-js/react' }) },
|
|
],
|
|
},
|
|
}
|
|
|
|
export default config
|