2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-10 07:52:23 +03:00
- express
- gitbook
- json-loader
- markdown-loader
- normalize.css
- prismjs
- vue-resource
This commit is contained in:
Jeff
2019-02-16 13:16:00 -08:00
parent a07cb4175f
commit 4d7d576008
9 changed files with 66 additions and 563 deletions
+8 -15
View File
@@ -1,24 +1,17 @@
var merge = require('webpack-merge')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var baseWebpackConfig = require('./webpack.base.conf')
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',
module: {
rules: [{
test: /\.md$/,
loader: "html!markdown-code-highlight-loader"
}]
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
template: './dev/dev.html',
inject: true
})
inject: true,
}),
],
optimization: {
noEmitOnErrors: true
}
})
noEmitOnErrors: true,
},
});