Compare commits

...

4 Commits

Author SHA1 Message Date
Nikhil Mandlik
a06580ad6e wip 2022-05-26 14:29:17 -07:00
Nikhil Mandlik
5b828804ac added extra devtool options 2022-05-26 14:29:08 -07:00
Nikhil Mandlik
d23e94efdb mode -> production 2022-05-26 14:29:02 -07:00
Nikhil Mandlik
26a98d451d use dev mode for production 2022-05-26 14:28:56 -07:00
2 changed files with 4 additions and 3 deletions

View File

@@ -26,9 +26,10 @@ const config = {
maelstromTheme: './src/plugins/themes/maelstrom-theme.scss'
},
output: {
globalObject: "this",
globalObject: 'this',
filename: '[name].js',
library: '[name]',
path: path.resolve(__dirname, 'dist'),
library: 'openmct',
libraryTarget: 'umd',
publicPath: '',
hashFunction: 'xxhash64',

View File

@@ -16,5 +16,5 @@ module.exports = merge(common, {
__OPENMCT_ROOT_RELATIVE__: '""'
})
],
devtool: 'source-map'
devtool: 'eval-source-map'
});