2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-26 04:34:04 +03:00
Files
vue-select/build/webpack.dev.conf.js
T
Jeff 4d7d576008 remove:
- express
- gitbook
- json-loader
- markdown-loader
- normalize.css
- prismjs
- vue-resource
2019-02-16 13:16:00 -08:00

18 lines
417 B
JavaScript

const merge = require('webpack-merge');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const baseWebpackConfig = require('./webpack.base.conf');
module.exports = merge(baseWebpackConfig, {
entry: './dev/dev.js',
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
template: './dev/dev.html',
inject: true,
}),
],
optimization: {
noEmitOnErrors: true,
},
});