mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2026-02-01 17:26:34 +00:00
* Invalidate context when CSS changes * Remove invalidation count check * Add sass integration test * Update changelog
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,
|
|
}),
|
|
],
|
|
}
|