Does source-maps in style tags work?
问题 I'm having problems with CSS within a tag and source-maps. In order to improve the load time of my project, I have changed the way I put the CSS in my HTML, turning this: <html> <head> <link rel="stylesheet" href="css/styles.css"> </head> <body> <h1>Source-maps working wonderfully</h1> </body> </html> Into this: <html> <head> <style> h1 { color: red }; //more css /*# sourceMappingURL=css/style.css.map */ </style> </head> <body> <h1>Source-maps not working :(</h1> </body> </html> Basically,