Allow passing through config options to postcss-modules so that we can control:
- The generate scope name
- hashPrefix
- locals convention
postcssModulesPlugin({
generateScopedName: "[name]__[local]___[hash:base64:5]",
hashPrefix: "prefix",
localsConvention: 'camelCaseOnly'
})
Allow passing through config options to postcss-modules so that we can control: