mirror of
https://github.com/plausible/analytics.git
synced 2024-11-09 16:46:40 +03:00
531dfb114b
* Use HeadlessUI for search select box
* Remove downshift from package.json
* More consistent API for Combobox component
* Combine toFilterType and valueWithoutPrefix into a single function
* Rename MyCombobox -> PlausibleCombobox
* Update webpack-cli
* Disable cache for build
* Revert "Disable cache for build"
This reverts commit aa130541f8
.
* Disable cache for build
* Update webpack dependencies
* Remove glob from webpack config
* Webpack is required by package.json
* Require autoprefixer in postcss config
* Revert build changes
* Fix styling for dark mode
49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
const path = require('path');
|
|
const webpack = require('webpack');
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
|
const CssMinimizerWebpackPlugin = require('css-minimizer-webpack-plugin');
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
|
|
|
module.exports = (env, options) => ({
|
|
optimization: {
|
|
minimizer: [
|
|
new TerserPlugin(),
|
|
new CssMinimizerWebpackPlugin()
|
|
]
|
|
},
|
|
entry: {
|
|
'app': ['./js/app.js'],
|
|
'dashboard': ['./js/dashboard/mount.js'],
|
|
'embed.host': ['./js/embed.host.js'],
|
|
'embed.content': ['./js/embed.content.js']
|
|
},
|
|
output: {
|
|
filename: '[name].js',
|
|
path: path.resolve(__dirname, '../priv/static/js')
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(js|jsx)$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader'
|
|
}
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
use: [MiniCssExtractPlugin.loader, 'css-loader', 'postcss-loader']
|
|
}
|
|
]
|
|
},
|
|
externals: { moment: 'moment' },
|
|
plugins: [
|
|
new MiniCssExtractPlugin({filename: '../css/[name].css'}),
|
|
new CopyWebpackPlugin({patterns: [{from: 'static/', to: '../' }]}),
|
|
new webpack.ProvidePlugin({
|
|
ResizeObserver: ['@juggle/resize-observer', 'ResizeObserver'] // https://caniuse.com/?search=ResizeObserver
|
|
})
|
|
]
|
|
});
|