You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In client.ts, I registered a Vue component through enhance. The code of this Vue component is as follows:
<template>
<div>hello world</div>
</template>
<style scoped>
div {color: red;}
</style>
When I have sideEffects in my package.json, such as sideEffects: false, and I run npm run dev, the "hello world" on the page is not red. But when I remove the sideEffects from package.json, the "hello world" on the page turns red.
You can try in the Reproduction.