- Added rollup-plugin-postcss to handle CSS imports in the project. - Updated rollup.config.js to include PostCSS plugin for CSS injection and minification. - Created a new styles.css file for component styling. - Enhanced OpenViduMeet component to manage iframe loading states and display error messages. - Implemented cleanup method in EventsManager to remove event listeners. - Added TypeScript declaration for CSS module imports.
4 lines
77 B
TypeScript
4 lines
77 B
TypeScript
declare module '*.css' {
|
|
const content: string;
|
|
export default content;
|
|
} |