最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

reactjs - Use dynamic import for SCSS in ASTRO - Stack Overflow

programmeradmin1浏览0评论

I need to import "desktop.scss" or "mobile.scss" in my astro "MainComponent".

So, based on ternary I have string "Desktop" or "Mobile" but when I try to import it, it always import both scss's.

First I tried:

import `../styles/${device}.scss`;

But I can't pass variable to import css.

Then I put scss import in 2 components: Desktop.astro and Mobile.astro which only job is to import scss:

import '../../styles/desktop.scss'

And Mobile.astro:

import '../../styles/mobile.scss'

Then in my MainComponent I tried:

const device = isMobile ? "Mobile" : "Desktop"
import(`../components/css/${device}.astro`)

It imports both scss files :(

Any idea?

I need to import "desktop.scss" or "mobile.scss" in my astro "MainComponent".

So, based on ternary I have string "Desktop" or "Mobile" but when I try to import it, it always import both scss's.

First I tried:

import `../styles/${device}.scss`;

But I can't pass variable to import css.

Then I put scss import in 2 components: Desktop.astro and Mobile.astro which only job is to import scss:

import '../../styles/desktop.scss'

And Mobile.astro:

import '../../styles/mobile.scss'

Then in my MainComponent I tried:

const device = isMobile ? "Mobile" : "Desktop"
import(`../components/css/${device}.astro`)

It imports both scss files :(

Any idea?

Share Improve this question edited Apr 1 at 8:17 Gnesh asked Apr 1 at 8:03 GneshGnesh 451 silver badge11 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Pretty sure this is done when you build the website. At that point you don't know whether any given user will be on mobile or desktop.

What you're looking for is CSS media queries.

发布评论

评论列表(0)

  1. 暂无评论