1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/mirrors-ApexChartsJS

Клонировать/Скачать
webpack.config.js 1.2 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
junedchhipa Отправлено 20.03.2023 22:27 d23b527
const path = require('path')
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
const ESLintPlugin = require('eslint-webpack-plugin')
module.exports = {
entry: [path.resolve(__dirname, 'src/apexcharts.js')],
mode: 'production',
output: {
library: 'ApexCharts',
libraryTarget: 'umd',
umdNamedDefine: false,
path: path.resolve(__dirname, 'dist/'),
filename: 'apexcharts.amd.js'
},
module: {
rules: [
{
test: /\.js$/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
}
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
},
{
test: /\.svg$/,
loader: 'svg-inline-loader'
}
]
},
watchOptions: {
poll: true
},
resolve: {
modules: [__dirname, 'src', 'node_modules'],
extensions: ['.js', '.json']
},
performance: {
hints: false,
maxEntrypointSize: 512000,
maxAssetSize: 512000
},
plugins: [
new ESLintPlugin(),
new BundleAnalyzerPlugin({
analyzerMode: 'static',
reportFilename: path.join('..', 'bundle-analysis.html'),
openAnalyzer: false
})
]
}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/mirrors-ApexChartsJS.git
git@api.gitlife.ru:oschina-mirror/mirrors-ApexChartsJS.git
oschina-mirror
mirrors-ApexChartsJS
mirrors-ApexChartsJS
main