hello, is there any way I can convert the Metronic CSS file with the SCSS module?
My goal is so that class names can be hashed in my project.
Thank You
Hi,
Sorry for the late reply.
In our Metronic Vue theme, you can hash CSS class names by using CSS modules. CSS modules generate unique class names for each component, preventing conflicts between styles in different components.
import { defineConfig } from "vite";
export default defineConfig({
...
css: {
modules: true
}
});