currently when i open developer tools in a browser i can see my raw svelte components i'd like to hide this information and send only the uglified code.
this is what i get when open developer tools. I am building a single page application.
this is my rollup.config.js
this are the scripts I use to run the project/rollup. found in package.json
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public --host 0.0.0.0 --port 2222 --single"
}
for production i run npm run build
I have set sourcemap: false, in rollup.config.js, the source file has disappeared from the /public/build folder, however browsers still show the components
