[Vuejs]-Vite build generates different css module classes

0👍

If you built your themes as a library, make sure to also set in the vite.config.ts under the css property the following:

 css: {
    preprocessorOptions: {
      scss: {
        additionalData: `
       ...
      `,
      },
    },
    modules: {
      generateScopedName: "[local]__[hash:base64:5]",
    },
  },

Leave a comment