naive-ui/build/webpack.private-doc.js

52 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-09-04 21:56:58 +08:00
/**
* Webpack config to pack documentation page
*/
const path = require('path')
const webpack = require('webpack')
const config = require('./config')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const VueLoaderPlugin = require('vue-loader/lib/plugin')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const webpackConfig = {
mode: 'development',
entry: './demo/privateIndex.js',
output: {
path: path.resolve(__dirname, '..', 'doc', 'dist'),
publicPath: '',
filename: '[name].[hash:7].js',
chunkFilename: '[name].[hash:7].js'
},
resolve: {
2019-09-23 23:41:31 +08:00
extensions: ['.js', '.vue', '.json', '.entry'],
2019-09-04 21:56:58 +08:00
alias: config.alias,
modules: ['node_modules']
},
performance: {
hints: false
},
stats: {
children: false
},
module: {
2019-10-10 22:38:29 +08:00
rules: config.docLoaders
2019-09-04 21:56:58 +08:00
},
plugins: [
new HtmlWebpackPlugin({
template: './demo/index.tpl',
filename: './index.html'
}),
new VueLoaderPlugin(),
new webpack.LoaderOptionsPlugin({
vue: {
compilerOptions: {
preserveWhitespace: false
}
}
}),
new ExtractTextPlugin('[name].[hash:7].css')
]
}
module.exports = webpackConfig