mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-26 04:34:04 +03:00
4d7d576008
- express - gitbook - json-loader - markdown-loader - normalize.css - prismjs - vue-resource
18 lines
417 B
JavaScript
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,
|
|
},
|
|
});
|