Jordan Pittman dcf116bb30
Add @tailwindcss/browser package (#15558)
Co-authored-by: Philipp Spiess <hello@philippspiess.com>
Co-authored-by: Robin Malfait <malfait.robin@gmail.com>
2025-01-07 09:57:34 -05:00

16 lines
267 B
TypeScript

import { defineConfig } from 'tsup'
export default defineConfig({
format: ['esm'],
clean: true,
minify: true,
entry: ['src/index.ts'],
noExternal: [/.*/],
loader: {
'.css': 'text',
},
define: {
'process.env.NODE_ENV': '"production"',
},
})