livebook/assets/webpack.config.js

61 lines
1.6 KiB
JavaScript
Raw Normal View History

2021-01-08 03:55:45 +08:00
const path = require('path');
const glob = require('glob');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
2021-05-13 05:44:45 +08:00
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
2021-01-08 03:55:45 +08:00
2021-03-17 18:17:52 +08:00
// Make sure NODE_ENV is set, so that @tailwindcss/jit is in watch mode in development.
process.env.NODE_ENV = process.env.NODE_ENV || 'development';
2021-01-08 03:55:45 +08:00
module.exports = (env, options) => {
const devMode = options.mode !== 'production';
return {
2021-05-13 05:44:45 +08:00
mode: options.mode || 'production',
2021-01-08 03:55:45 +08:00
entry: {
'app': glob.sync('./vendor/**/*.js').concat(['./js/app.js'])
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, (devMode ? '../tmp/static_dev/js' : '../priv/static/js')),
2021-01-08 03:55:45 +08:00
publicPath: '/js/'
},
devtool: devMode ? 'eval-cheap-module-source-map' : undefined,
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
},
{
test: /\.[s]?css$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
2021-01-08 05:13:17 +08:00
'postcss-loader',
2021-01-08 03:55:45 +08:00
],
},
{
test: /\.(ttf|woff|woff2|eot|svg)$/,
use: ['file-loader'],
},
2021-01-08 03:55:45 +08:00
]
},
plugins: [
new MiniCssExtractPlugin({ filename: '../css/app.css' }),
new MonacoWebpackPlugin({
languages: ['markdown', 'elixir']
})
2021-05-13 05:44:45 +08:00
],
optimization: {
minimizer: [
'...',
new CssMinimizerPlugin()
]
},
2021-01-08 03:55:45 +08:00
}
};