Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How do I *not* merge with app.css? #200

Open
NullVoxPopuli opened this issue Jul 6, 2020 · 0 comments
Open

How do I *not* merge with app.css? #200

NullVoxPopuli opened this issue Jul 6, 2020 · 0 comments

Comments

@NullVoxPopuli
Copy link

NullVoxPopuli commented Jul 6, 2020

I'm wanting to control CSS order in my app's app.css.
(I have looked at the ordering doc: it's not what I want ;) )

I've tried intermediateOutputPath, which doesn't error when I import, but I see that CSS from my add-ons that specify the intermediate output path are still concat'd in the wrong order.

in my app:

@import 'a.css';
@import 'b.css';

in addon a:

options: {
  cssModules: {
     intermediateOutputPath: 'a.css',
  },
},

in addon b:

options: {
  cssModules: {
     intermediateOutputPath: 'b.css',
  },
},

however, in my vendor.css in the browser, I see:

// b.css styles
// a.css is no where to be found

and app.css in the browser does not contain the @import contents

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant