mirror of
https://github.com/KevinMidboe/vue-js-modal.git
synced 2025-10-29 18:00:20 +00:00
15 lines
336 B
JavaScript
15 lines
336 B
JavaScript
// This is the webpack config used for unit tests.
|
|
|
|
var webpack = require('webpack')
|
|
var merge = require('webpack-merge')
|
|
var baseConfig = require('./webpack.base.config')
|
|
|
|
var webpackConfig = merge(baseConfig, {
|
|
devtool: '#inline-source-map'
|
|
})
|
|
|
|
delete webpackConfig.entry
|
|
delete webpackConfig.output
|
|
|
|
module.exports = webpackConfig
|