feat: Proper CSS api & css bundle (#269)

Co-authored-by: Vap0r1ze <superdash993@gmail.com>
This commit is contained in:
Ven 2022-12-25 20:47:35 +01:00 committed by GitHub
parent 2172cae779
commit 2e5d27b6b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 438 additions and 126 deletions

6
src/modules.d.ts vendored
View file

@ -37,3 +37,9 @@ declare module "~fileContent/*" {
const content: string;
export default content;
}
declare module "*.css" { }
declare module "*.css?managed" {
const name: string;
export default name;
}