mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
8 lines
287 B
JavaScript
8 lines
287 B
JavaScript
var SourceMapDevToolPlugin = require('aspnet-webpack').SourceMapDevToolPlugin;
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
new SourceMapDevToolPlugin({ moduleFilenameTemplate: '../../[resourcePath]' }) // Compiled output is at './wwwroot/dist/', but sources are relative to './'
|
|
]
|
|
};
|