-
Notifications
You must be signed in to change notification settings - Fork 0
/
metro.config.js
29 lines (24 loc) · 880 Bytes
/
metro.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const { getDefaultConfig } = require('expo/metro-config')
/** @type {import('expo/metro-config').MetroConfig} */
let config = getDefaultConfig(__dirname, {
// [Web-only]: Enables CSS support in Metro.
isCSSEnabled: true
})
config.resolver.sourceExts.push('md', 'mdx')
config.transformer.babelTransformerPath = require.resolve('./transformer.js')
config.transformer.minifierConfig = {
compress: {
// The option below removes all console logs statements in production.
drop_console: true,
// The option below removes all warnings in production.
warnings: false,
// The option below removes all debugger statements in production.
drop_debugger: true
}
}
const { withTamagui } = require('@tamagui/metro-plugin')
module.exports = withTamagui(config, {
components: ['tamagui'],
config: './tamagui.config.ts',
outputCSS: './tamagui-web.css'
})