英文:
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"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论