overleaf/services/web/webpack.config.prod.js

22 lines
507 B
JavaScript
Raw Normal View History

2018-03-13 13:44:08 -04:00
const path = require('path')
const merge = require('webpack-merge')
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',
2018-03-13 13:44:08 -04:00
output: {
// Override output path to minjs dir
path: path.join(__dirname, '/public/minjs'),
// Override filename to include hash for immutable caching
filename: '[name]-[chunkhash].js',
publicPath: '/minjs/'
}
})