Arquivos
VoTT/config/webpack.dev.js
T
Wallace Breza f731dfaece feat: Make security tokens optional (#1022)
Security tokens are a great way to protect sensitive data from being stored in plain text within your project file, but at the same time can be more difficult to use when sharing projects with team members.

In this feature security tokens are still enabled by default but give the project author the ability to turn off security tokens which then stores all provider options in plain text.
2020-11-03 11:34:17 -08:00

8 linhas
177 B
JavaScript

const merge = require('webpack-merge')
const common = require('./webpack.common.js')
module.exports = merge(common, {
mode: 'development',
devtool: "inline-source-map",
})