mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
9e36de9da0
Revert "[Imported] Vendor web fonts, (#708)" GitOrigin-RevId: a9276168b880326fda51ba3d172d6cbfbdf74f6a
31 lines
977 B
JavaScript
31 lines
977 B
JavaScript
const merge = require('webpack-merge')
|
|
const TerserPlugin = require('terser-webpack-plugin')
|
|
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin')
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
|
|
|
const base = require('./webpack.config')
|
|
|
|
module.exports = merge(base, {
|
|
mode: 'production',
|
|
|
|
// Enable a full source map. Generates a comment linking to the source map
|
|
devtool: 'source-map',
|
|
|
|
output: {
|
|
// Override filename to include hash for immutable caching
|
|
filename: 'js/[name]-[chunkhash].js'
|
|
},
|
|
|
|
optimization: {
|
|
// Minify JS (with Terser) and CSS (with cssnano)
|
|
minimizer: [new TerserPlugin(), new OptimizeCssAssetsPlugin()]
|
|
},
|
|
|
|
plugins: [
|
|
// Extract CSS to a separate file (rather than inlining to a <style> tag)
|
|
new MiniCssExtractPlugin({
|
|
// Output to public/stylesheets directory and append hash for immutable caching
|
|
filename: 'stylesheets/[name]-[chunkhash].css'
|
|
})
|
|
]
|
|
})
|