naive-ui/build/webpack.dev.js
2019-10-14 13:10:26 +08:00

58 lines
1.2 KiB
JavaScript

/**
* Webpack config under development
*/
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 webpackConfig = {
mode: 'development',
entry: './demo/index.js',
output: {
path: path.resolve(process.cwd()),
publicPath: '/',
filename: '[name].[hash:7].js',
chunkFilename: '[name].[hash:7].js'
},
resolve: {
extensions: ['.js', '.vue', '.json', '.entry'],
alias: config.alias,
modules: ['node_modules']
},
devServer: {
host: '0.0.0.0',
port: 8086,
publicPath: '/',
hot: true,
historyApiFallback: true
},
performance: {
hints: false
},
stats: {
children: false
},
module: {
rules: config.docLoaders
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new HtmlWebpackPlugin({
template: './demo/index.tpl',
filename: './index.html'
}),
new VueLoaderPlugin(),
new webpack.LoaderOptionsPlugin({
vue: {
compilerOptions: {
preserveWhitespace: false
}
}
})
]
}
module.exports = webpackConfig