mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
40 lines
1.3 KiB
JavaScript
40 lines
1.3 KiB
JavaScript
var config = require('../config')
|
|
var webpack = require('webpack')
|
|
var merge = require('webpack-merge')
|
|
var utils = require('./utils')
|
|
var baseWebpackConfig = require('./webpack.base.conf')
|
|
var HtmlWebpackPlugin = require('html-webpack-plugin')
|
|
|
|
// add hot-reload related code to entry chunks
|
|
Object.keys(baseWebpackConfig.entry).forEach(function (name) {
|
|
baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name])
|
|
})
|
|
|
|
module.exports = merge(baseWebpackConfig, {
|
|
module: {
|
|
loaders: utils.styleLoaders().concat({ test: /\.md$/, loader: "html!markdown" })
|
|
},
|
|
// eval-source-map is faster for development
|
|
devtool: '#eval-source-map',
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env': config.dev.env
|
|
}),
|
|
// https://github.com/glenjamin/webpack-hot-middleware#installation--usage
|
|
new webpack.optimize.OccurenceOrderPlugin(),
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
new webpack.NoErrorsPlugin(),
|
|
// https://github.com/ampedandwired/html-webpack-plugin
|
|
new HtmlWebpackPlugin({
|
|
filename: 'index.html',
|
|
template: utils.shouldServeHomepage() ? './docs/homepage/home.html' : './dev/dev.html',
|
|
inject: true
|
|
})
|
|
],
|
|
markdownLoader: {
|
|
highlight: function (code) {
|
|
return require('highlight.js').highlightAuto(code).value;
|
|
}
|
|
}
|
|
})
|