mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* Update rollup to version 3.10.0 * Update Rollup integrations for Rollup 3 Co-authored-by: depfu[bot] <23717796+depfu[bot]@users.noreply.github.com> Co-authored-by: Jonathan Reinink <jonathan@reinink.ca>
15 lines
217 B
JavaScript
15 lines
217 B
JavaScript
import postcss from 'rollup-plugin-postcss'
|
|
|
|
export default {
|
|
input: './src/index.js',
|
|
output: {
|
|
file: './dist/index.js',
|
|
format: 'cjs',
|
|
},
|
|
plugins: [
|
|
postcss({
|
|
extract: true,
|
|
}),
|
|
],
|
|
}
|