mirror of
https://github.com/D4M13N-D3V/neroshitron.git
synced 2025-03-14 10:05:04 +00:00
16 lines
351 B
JavaScript
16 lines
351 B
JavaScript
|
const { withTamagui } = require('@tamagui/next-plugin')
|
||
|
|
||
|
module.exports = function (name, { defaultConfig }) {
|
||
|
let config = {
|
||
|
...defaultConfig,
|
||
|
// ...your configuration
|
||
|
}
|
||
|
const tamaguiPlugin = withTamagui({
|
||
|
config: './tamagui.config.ts',
|
||
|
components: ['tamagui'],
|
||
|
})
|
||
|
return {
|
||
|
...config,
|
||
|
...tamaguiPlugin(config),
|
||
|
}
|
||
|
}
|