mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
27 lines
617 B
JavaScript
27 lines
617 B
JavaScript
/* global __dirname module */
|
|
|
|
/*
|
|
This configuration should be used for production installs.
|
|
It is the default webpack configuration.
|
|
*/
|
|
const { merge } = require('webpack-merge');
|
|
const common = require('./webpack.common');
|
|
|
|
const path = require('path');
|
|
const webpack = require('webpack');
|
|
|
|
module.exports = merge(common, {
|
|
mode: 'production',
|
|
resolve: {
|
|
alias: {
|
|
"vue": path.join(__dirname, "node_modules/vue/dist/vue.min.js")
|
|
}
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
__OPENMCT_ROOT_RELATIVE__: '""'
|
|
})
|
|
],
|
|
devtool: 'source-map'
|
|
});
|