mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Co-authored-by: Philipp Spiess <hello@philippspiess.com> Co-authored-by: Robin Malfait <malfait.robin@gmail.com>
16 lines
267 B
TypeScript
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"',
|
|
},
|
|
})
|