We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
context
The loader seems to not take into account the context webpack key.
If I do this with my all my code in the client folder:
client
module.exports = { context: path.join(__dirname, '/client'), module: { loaders: [ { test: /\.jade$/, include: path.resolve(__dirname, "src"), loader: 'jade-react' } ] }
Then the files don't get picked up and I have errors of the type:
You may need an appropriate loader to handle this file type.
If I change the above to
module.exports = { context: path.join(__dirname, '/client'), module: { loaders: [ { test: /\.jade$/, include: path.resolve(__dirname, "client/src"), loader: 'jade-react' } ] }
Then things work.
The text was updated successfully, but these errors were encountered:
Hi @jmatsushita - will try to look into it this weekend. Also update to React v15 etc
Sorry, something went wrong.
No branches or pull requests
The loader seems to not take into account the
context
webpack key.If I do this with my all my code in the
client
folder:Then the files don't get picked up and I have errors of the type:
If I change the above to
Then things work.
The text was updated successfully, but these errors were encountered: