2022-09-30 15:17:02 +00:00
|
|
|
/* global __dirname module */
|
|
|
|
|
|
|
|
/*
|
|
|
|
This configuration should be used for production installs.
|
|
|
|
It is the default webpack configuration.
|
|
|
|
*/
|
2023-01-12 19:46:35 +00:00
|
|
|
const path = require("path");
|
|
|
|
const webpack = require("webpack");
|
2023-01-17 16:05:34 +00:00
|
|
|
const { merge } = require("webpack-merge");
|
|
|
|
|
|
|
|
const common = require("./webpack.common");
|
|
|
|
const projectRootDir = path.resolve(__dirname, "..");
|
2021-12-30 00:18:48 +00:00
|
|
|
|
|
|
|
module.exports = merge(common, {
|
2023-01-12 19:46:35 +00:00
|
|
|
mode: "production",
|
2021-12-30 00:18:48 +00:00
|
|
|
resolve: {
|
|
|
|
alias: {
|
2023-01-17 16:05:34 +00:00
|
|
|
vue: path.join(projectRootDir, "node_modules/vue/dist/vue.min.js")
|
2021-12-30 00:18:48 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
__OPENMCT_ROOT_RELATIVE__: '""'
|
|
|
|
})
|
|
|
|
],
|
2023-01-12 19:46:35 +00:00
|
|
|
devtool: "source-map"
|
2021-12-30 00:18:48 +00:00
|
|
|
});
|