Hi, I'm new to astro, and I encoutered this problem :
I have a component, and inside of it, I have
`---
import './style.css';
other astro stuff
---`
And my style.css is located in my public folder, according to what I've seen on the docs, this should work, but I get this error:
failed to load module for ssr: ./style.css
Btw yes in my astro config I've enabled ssr :
export default defineConfig({ output: "server", adapter: node({ mode: 'standalone' }) });