mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
102 lines
2.1 KiB
JavaScript
102 lines
2.1 KiB
JavaScript
const path = require('path');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
|
|
const { VueLoaderPlugin } = require('vue-loader');
|
|
|
|
module.exports = {
|
|
mode: 'development',
|
|
entry: {
|
|
'vant-docs': './docs/src/index.js',
|
|
'vant-mobile': './docs/src/mobile.js'
|
|
},
|
|
output: {
|
|
path: path.join(__dirname, '../docs/dist'),
|
|
publicPath: '/',
|
|
chunkFilename: 'async_[name].js'
|
|
},
|
|
stats: {
|
|
modules: false,
|
|
children: false
|
|
},
|
|
serve: {
|
|
open: true,
|
|
host: '0.0.0.0',
|
|
devMiddleware: {
|
|
logLevel: 'warn'
|
|
},
|
|
hotClient: {
|
|
logLevel: 'warn',
|
|
allEntries: true
|
|
}
|
|
},
|
|
resolve: {
|
|
extensions: ['.js', '.ts', '.tsx', '.vue', '.css'],
|
|
alias: {
|
|
packages: path.join(__dirname, '../packages')
|
|
}
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.vue$/,
|
|
use: [
|
|
{
|
|
loader: 'vue-loader',
|
|
options: {
|
|
compilerOptions: {
|
|
preserveWhitespace: false
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
test: /\.(js|ts|tsx)$/,
|
|
exclude: /node_modules/,
|
|
use: 'babel-loader'
|
|
},
|
|
{
|
|
test: /\.less$/,
|
|
use: [
|
|
'style-loader',
|
|
'css-loader',
|
|
'postcss-loader',
|
|
{
|
|
loader: 'less-loader',
|
|
options: {
|
|
paths: [path.resolve(__dirname, 'node_modules')]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
test: /\.md$/,
|
|
use: [
|
|
'vue-loader',
|
|
'@vant/markdown-loader'
|
|
]
|
|
},
|
|
{
|
|
test: /\.(ttf|svg)$/,
|
|
loader: 'url-loader'
|
|
}
|
|
]
|
|
},
|
|
plugins: [
|
|
new VueLoaderPlugin(),
|
|
new ProgressBarPlugin(),
|
|
new HtmlWebpackPlugin({
|
|
chunks: ['vant-docs'],
|
|
template: 'docs/src/index.tpl',
|
|
filename: 'index.html',
|
|
inject: true
|
|
}),
|
|
new HtmlWebpackPlugin({
|
|
chunks: ['vant-mobile'],
|
|
template: 'docs/src/index.tpl',
|
|
filename: 'mobile.html',
|
|
inject: true
|
|
})
|
|
]
|
|
};
|