mirror of
https://github.com/nasa/openmct.git
synced 2024-12-27 00:31:06 +00:00
20 lines
402 B
JavaScript
20 lines
402 B
JavaScript
/*
|
|
This configuration should be used for production installs.
|
|
It is the default webpack configuration.
|
|
*/
|
|
|
|
import webpack from 'webpack';
|
|
import { merge } from 'webpack-merge';
|
|
|
|
import common from './webpack.common.mjs';
|
|
|
|
export default merge(common, {
|
|
mode: 'production',
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
__OPENMCT_ROOT_RELATIVE__: '""'
|
|
})
|
|
],
|
|
devtool: 'eval-source-map'
|
|
});
|