Property ‘updated’ in type ‘CdsIcon’ is not assignable to the same property in base type ‘LitElement’

What is The Error? This issue is caused because of the latest push done at CDS (Clarity design systems) by miss they have not updated the ‘LitElement‘ dependency plugin. Actual error:   Solution : For now, you can temporarily downgrade @lit/reactive-elementĀ to versionĀ 1.2.1: npm install @lit/reactive-element@<1.2.2 else Just add the below code in the package.js “resolutions”: { “@lit/reactive-element”: “1.2.1” } Then run npm install Arjun JSArjun is a Full-stack developer, who is fond of the web. Lives in Chikmagalur, Karnataka, India arjunckm.in

Read More
Hosting PHP 

How to redirect / rewrite urls using .htaccess file

What is .htaccess? The .htaccess (Hypertext Access) file is an Apache distributed server configuration file. You can use the .htaccess file to set server configurations for a specific directory. .htaccess file is created in order to enable extra features for that subdirectory. Creating .htaccess: we have to create .htaccess in the application root path. But if you want only for a specific subpath then you can create in subpath too. Note: While adding urls, please replace all the example.com domains with your specific domain. Redirecting all URLs: The following line…

Read More