when I set csp to my vue project, it will break csp due to style tags generated by primevue.
i already added hash in csp, but don't know how to add hash in this auto generated styles by primevue.
Now prime vue give support of content security policy with nonce.. refer below images:
Now only need to add follow code in config and it works properly:
app.use(PrimeVue, {
csp: {
nonce: '...'
}
});