如何在monorepo中重用CSS文件

huangapple go评论62阅读模式
英文:

How to reuse a css file in a monorepo

问题

我正在使用Turborepo,并想知道是否有办法创建一个通用的CSS文件并重复使用它。例如,考虑以下架构,

apps/
 |- client/
    |- index.tsx
packages/
 |- ui/
    |- global.css
    |- index.tsx
    |- ...

我该如何做类似于以下的操作?

client/index.tsx:

import React from 'react';
import global.css from 'ui';

...
英文:

I am using Turborepo, and am wondering if there is a way that I can create a common css file and reuse it. For example, given the below architecture,

apps/
 |- client/
    |- index.tsx
packages/
 |- ui/
    |- global.css
    |- index.tsx
    |- ...

How can I do something like this?

client/index.tsx:

import React from 'react';
import global.css from 'ui';

...

答案1

得分: 2

尝试这样做:

import "ui/global.css"
英文:

Try this:

import "ui/global.css"

huangapple
  • 本文由 发表于 2023年2月10日 04:24:35
  • 转载请务必保留本文链接:https://go.coder-hub.com/75404059.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定