File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,14 @@ module.exports.pitch = function (remainingRequest) {
17
17
var addStylesClientPath = loaderUtils . stringifyRequest ( this , '!' + path . join ( __dirname , 'lib/addStylesClient.js' ) )
18
18
var addStylesServerPath = loaderUtils . stringifyRequest ( this , '!' + path . join ( __dirname , 'lib/addStylesServer.js' ) )
19
19
20
- var isVue = / \. v u e $ / . test ( remainingRequest )
21
20
var request = loaderUtils . stringifyRequest ( this , '!!' + remainingRequest )
22
21
var id = JSON . stringify ( hash ( request ) )
23
22
23
+ // direct css import from js --> direct (how does this work when inside an async chunk? ...just don't do it)
24
+ // css import from vue file --> component lifecycle linked
25
+ // style embedded in vue file --> component lifecycle linked
26
+ var isVue = / " v u e " : t r u e / . test ( remainingRequest )
27
+
24
28
var shared = [
25
29
'// style-loader: Adds some css to the DOM by adding a <style> tag' ,
26
30
'' ,
You can’t perform that action at this time.
0 commit comments