Skip to content

Optimization by file content must skip "proxy" files #31

@kud

Description

@kud

I've a main css file where I do:

@import "module-a";
@import "module-b";

Both modules have an index.css with @import "./src/styles/index.css";

If I compile, it only imports the first module, not the second. For instance, if I switch from a to b like that:

@import "module-b";
@import "module-a";

module-b will be imported but not module-a.

To fix it, I have to do that:

@import "module-a/src/styles/index.css";
@import "module-b/src/styles/index.css";

I'm inspecting this bug but if you have already an idea why, I'll be glad to hear.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions