Skip to content
  • Sponsor webpack-contrib/css-loader

  • Notifications You must be signed in to change notification settings
  • Fork 608
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

@import rules in css doesn't look in node_modules folder #12

Closed
ryanseddon opened this issue May 1, 2014 · 18 comments
Closed

@import rules in css doesn't look in node_modules folder #12

ryanseddon opened this issue May 1, 2014 · 18 comments

Comments

@ryanseddon
Copy link

I have a file called base.css that has an import statement

@import "normalize.css/normalize.css"
body {
  background: red;
}

This is my app.js:

var css  = require('./styles/base.css');

module.exports = function Foo() {
    return {
        foo: 'bar',
        baz: 'gah'
    };
};

I've npm installed normalize but running the webpack command throws:

$ webpack
Hash: 2a64a4ac64b2026975fb
Version: webpack 1.1.8
Time: 82ms
    Asset  Size  Chunks             Chunk Names
bundle.js  2019       0  [emitted]  main
   [0] ./src/app.js 137 {0} [built]
   [1] ./src/styles/base.css 177 {0} [built] [1 error]

ERROR in ./src/styles/base.css
Module not found: Error: Cannot resolve file or directory ./normalize.css/normalize.css in /Users/Ryan/Git/webpack-demo/src/styles
 @ ./src/styles/base.css 2:1-116

What am I doing wrong? I understand that it's looking in styles dir but I thought it would scan node_modules first?

@sokra
Copy link
Member

sokra commented May 1, 2014

css @import is relative to the current directory. For resolving "like a module" you can prefix ~.

@import "~normalize.css/normalize.css"
body {
  background: red;
}

@ryanseddon
Copy link
Author

Ah is that documented anywhere?

If I have resolve.alias for my modules will this require a tilde too?

@ryanseddon
Copy link
Author

Ah figured it out to get working in resolve.alias. Closing thanks.

@gsklee
Copy link

gsklee commented Jun 2, 2015

+1, is this documented anywhere?

@nickdima
Copy link

@ryanseddon could you please explain how you set up the alias? thanks!

@nickdima
Copy link

@sokra there's no way to avoid the ~ in the require? I was thinking about a fallback configuration or something similar.

koistya pushed a commit to koistya/css-loader that referenced this issue Nov 19, 2015
it now bubbles when the css failed
fixes webpack-contrib#11
fixes webpack-contrib#12
fixes webpack-contrib#13
@alexrogers
Copy link

@import "~normalize.css/normalize.css" worked for me, thanks for the tip.

@johnnyoshika
Copy link

For anyone else having trouble importing css like I did, make sure you don't forget the semi-colon at the end:

@import "~normalize.css/normalize.css";

@ericdfields
Copy link

aaaaand simply @import "~normalize.css" is what did it for me

@langri-sha
Copy link

If you want what @ericdfields is doing, you need to override the defaults for resolve.packageMains and make sure to include style.

@JamesTheHacker
Copy link

Non of the above works for me. I get the following error:

ERROR in ./~/css-loader!./~/postcss-loader!./src/css/base.css
    Module build failed: Error: ENOENT: no such file or directory, open '/Users/jamesjeffery/Projects/StudentApp/src/css/~normalize.css'
        at Error (native)

I tried both @import "~normalize.css/normalize.css"; and @import "~normalize.css";`. I have normalize.css installed via npm.

@langri-sha
Copy link

@JamesTheHacker do you have postcss-import configured and are you on Webpack 1?

@quantuminformation
Copy link

quantuminformation commented Nov 26, 2016

I also had the same issue with postcss-smart-loader. Using webpack 2 beta 27

@quantuminformation
Copy link

you need to use @import "normalize.css";

@JamesTheHacker

@thefron
Copy link

thefron commented Dec 7, 2016

@quantuminformation Removing tilde worked for me. Thanks!

@rhysburnie
Copy link

Hi,

Is there anyway around this issue?

If I have a css file with @import '~normalize.css'; without css modules it's fine.
Then If I enable css modules I get an error unless I use `@import 'normalize.css';

So if you use the the same css file for two projects one with without modules one with you have to add / remove tilde ~ respectively.

I've read in other places you "may" remove tilde when using css modules, but it seems like you have to

@ghost
Copy link

ghost commented Jul 12, 2017

@quantuminformation Removing tilde worked for me. Thanks!

@rhysburnie

I have a css file with @import 'normalize.css'; without css modules it's fine.
But If I enable css modules I get an error with @import '~normalize.css'; unless I remove tilde;

@yyman001
Copy link

for js

let reset_css = require('normalize-css/normalize.css')

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