mirror of
https://github.com/d0zingcat/BroadcastChannel.git
synced 2026-05-13 15:09:12 +00:00
- Enabled PostCSS nesting with specific configuration for modern compatibility - Added global CSS reset for consistent tap highlights across browsers - Optimized package configuration for broader browser support - Refactored and streamlined global CSS, removing redundant styles for better maintainability - Integrated additional CSS import in component for modular styling approach
11 lines
188 B
JavaScript
11 lines
188 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
require('postcss-nesting')({
|
|
edition: '2021',
|
|
noIsPseudoSelector: true,
|
|
}),
|
|
require('autoprefixer'),
|
|
require('cssnano'),
|
|
],
|
|
}
|