Compare commits

...

6 Commits

Author SHA1 Message Date
1a9c845f84 Merge branch 'master' into temp-source-map-fix 2022-05-27 09:40:29 -07:00
dfa2e1ef1e Merge branch 'master' into temp-source-map-fix 2022-05-25 00:00:49 -07:00
fa4c58a7cb wip 2022-05-24 23:05:35 -07:00
6c642281e7 added extra devtool options 2022-05-24 17:27:40 -07:00
68e46e45c7 mode -> production 2022-05-24 17:06:46 -07:00
8cd87ff9d1 use dev mode for production 2022-05-24 15:39:23 -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' maelstromTheme: './src/plugins/themes/maelstrom-theme.scss'
}, },
output: { output: {
globalObject: "this", globalObject: 'this',
filename: '[name].js', filename: '[name].js',
library: '[name]', path: path.resolve(__dirname, 'dist'),
library: 'openmct',
libraryTarget: 'umd', libraryTarget: 'umd',
publicPath: '', publicPath: '',
hashFunction: 'xxhash64', hashFunction: 'xxhash64',

View File

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