I have been getting a bunch of warnings in my console saying "Unused CSS selector" for css from other files or css that was deleted already. It may be related to https://github.com/sveltejs/sapper/issues/842, but for now I am just looking for a way to prevent the unused css selector warnings from appearing in the console.
I have tried writing comments at the top of the _layout.svelte and template.html files like this: <!-- svelte-ignore css-unused-selector --> as is done here: https://svelte.dev/docs#Comments, but it does not work. I could go through and add this to each file, but I was wondering if there is a way to make it apply to all files. Thanks.