8000 Bugfix/8.x webpack2 by yinheli · Pull Request #668 · vuejs/vue-loader · GitHub
[go: up one dir, main page]

Skip to content

Bugfix/8.x webpack2 #668

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

Merged
merged 2 commits into from
Feb 23, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
adapt for webpack2
loader suffix is no longer optional in webpack2 for clarity reasons
@see https://webpack.js.org/configuration/#options
  • Loading branch information
yinheli committed Feb 22, 2017
commit 32e5366e89a6d908786d307756230f319d44c632
2 changes: 1 addition & 1 deletion lib/loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ module.exports = function (content) {
return defaultLoaders.html + '!' + rewriter + templateLoader + '?raw&engine=' + lang + '!'
case 'style':
loader = addCssModulesToLoader(defaultLoaders.css, part, index)
return loader + '!' + rewriter + lang + '!'
return loader + '!' + rewriter + lang + '-loader' + '!'
case 'script':
return injectString + lang + '!'
}
Expand Down
0