Skip to content

Commit

Permalink
Add source map for library build
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Sep 6, 2023
1 parent 2d8d381 commit df74500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export default function buildWebpackConfig(env: Env): any {
entry: './src/standalone.ts',
optimization: { minimize: true },
externals: undefined,
devtool: 'source-map',
output: {
...baseConfig.output,
filename: 'voyager.standalone.js',
Expand All @@ -56,6 +55,7 @@ export default function buildWebpackConfig(env: Env): any {
}

const baseConfig: webpack.Configuration = {
devtool: 'source-map',
performance: {
hints: false,
},
Expand Down

0 comments on commit df74500

Please sign in to comment.