vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
3.5 KiB
141 lines
3.5 KiB
const HtmlWebpackPlugin = require('html-webpack-plugin'); |
|
const VueLoaderPlugin = require('vue-loader/dist/plugin').default; |
|
const WebpackBar = require('webpackbar'); |
|
const path = require('path'); |
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin'); |
|
|
|
module.exports = { |
|
mode: 'development', |
|
entry: { |
|
app: './examples/index.js', |
|
}, |
|
module: { |
|
rules: [ |
|
{ |
|
test: /\.(vue|md)$/, |
|
loader: 'vue-loader', |
|
exclude: /\.(en-US.md|zh-CN.md)$/, |
|
}, |
|
{ |
|
test: /\.(en-US.md|zh-CN.md)$/, |
|
use: [{ loader: 'vue-loader' }, { loader: './loader.js' }], |
|
}, |
|
{ |
|
test: /\.(js|jsx)$/, |
|
loader: 'babel-loader', |
|
exclude: /pickr.*js/, |
|
options: { |
|
cacheDirectory: true, |
|
presets: [ |
|
[ |
|
'@babel/preset-env', |
|
{ |
|
targets: { |
|
browsers: [ |
|
'last 2 versions', |
|
'Firefox ESR', |
|
'> 1%', |
|
'ie >= 9', |
|
'iOS >= 8', |
|
'Android >= 4', |
|
], |
|
}, |
|
}, |
|
], |
|
], |
|
plugins: [ |
|
[ |
|
'babel-plugin-import', |
|
{ |
|
libraryName: 'ant-design-vue', |
|
libraryDirectory: '', // default: lib |
|
style: true, |
|
}, |
|
], |
|
['@ant-design-vue/babel-plugin-jsx', { transformOn: true, usePatchFlag: false }], |
|
'@babel/plugin-proposal-optional-chaining', |
|
'@babel/plugin-transform-object-assign', |
|
'@babel/plugin-proposal-object-rest-spread', |
|
'@babel/plugin-proposal-export-default-from', |
|
'@babel/plugin-proposal-class-properties', |
|
], |
|
}, |
|
}, |
|
{ |
|
test: /\.(png|jpg|gif|svg)$/, |
|
loader: 'file-loader', |
|
options: { |
|
name: '[name].[ext]?[hash]', |
|
}, |
|
}, |
|
{ |
|
test: /\.less$/, |
|
use: [ |
|
{ loader: 'style-loader' }, |
|
{ |
|
loader: 'css-loader', |
|
options: { sourceMap: true }, |
|
}, |
|
{ |
|
loader: 'less-loader', |
|
options: { |
|
lessOptions: { |
|
sourceMap: true, |
|
javascriptEnabled: true, |
|
}, |
|
}, |
|
}, |
|
], |
|
}, |
|
{ |
|
test: /\.css$/, |
|
use: [ |
|
{ |
|
loader: MiniCssExtractPlugin.loader, |
|
options: { |
|
hmr: true, |
|
}, |
|
}, |
|
'css-loader', |
|
], |
|
}, |
|
], |
|
}, |
|
resolve: { |
|
alias: { |
|
'ant-design-vue/es/locale/en_US': path.join( |
|
__dirname, |
|
'./components/locale-provider/en_US.js', |
|
), |
|
'ant-design-vue/es/locale/zh_CN': path.join( |
|
__dirname, |
|
'./components/locale-provider/zh_CN.js', |
|
), |
|
'ant-design-vue': path.join(__dirname, './components'), |
|
|
|
vue$: 'vue/dist/vue.esm-bundler.js', |
|
}, |
|
extensions: ['.js', '.jsx', '.vue', '.md'], |
|
}, |
|
devServer: { |
|
historyApiFallback: { |
|
rewrites: [{ from: /./, to: '/index.html' }], |
|
}, |
|
disableHostCheck: true, |
|
hot: true, |
|
open: true, |
|
}, |
|
devtool: 'cheap-module-eval-source-map', |
|
plugins: [ |
|
new MiniCssExtractPlugin({ |
|
filename: '[name].css', |
|
}), |
|
new HtmlWebpackPlugin({ |
|
template: 'examples/index.html', |
|
filename: 'index.html', |
|
inject: true, |
|
}), |
|
new VueLoaderPlugin(), |
|
new WebpackBar(), |
|
], |
|
};
|
|
|