naive-ui/build/webpack.test-size.js

54 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-10-24 18:04:31 +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 BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
const webpackConfig = {
mode: 'production',
entry: './test-size/index.js',
output: {
path: path.resolve(__dirname, '..', 'test-size', 'dist'),
publicPath: '/',
filename: '[name].[hash:7].js',
chunkFilename: '[name].[hash:7].js'
},
resolve: {
extensions: ['.js', '.vue', '.json', '.entry'],
alias: config.alias,
modules: ['node_modules']
},
performance: {
hints: false
},
stats: {
children: false
},
module: {
rules: config.docLoaders
},
plugins: [
new HtmlWebpackPlugin({
template: './demo/index.tpl',
2019-10-28 12:39:56 +08:00
favicon: './demo/assets/images/naivelogo.svg'
2019-10-24 18:04:31 +08:00
}),
new VueLoaderPlugin(),
new webpack.LoaderOptionsPlugin({
vue: {
compilerOptions: {
preserveWhitespace: false
}
}
}),
new ExtractTextPlugin('[name].[hash:7].css'),
new BundleAnalyzerPlugin()
]
}
module.exports = webpackConfig