mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
326cfdf217
* Add packages * misc changes * Work * Fix missing package * Remove lint for now * Test differently * Try no-sandbox * Test * Try that * Try that * Test * Not headless? * Test electron * Try Windows * lerna run test * Update
16 lines
352 B
JavaScript
16 lines
352 B
JavaScript
import path from 'path';
|
|
import baseConfig from './base.config';
|
|
|
|
export default baseConfig({
|
|
mode: 'production',
|
|
input: {
|
|
page: [path.join(__dirname, '../src/browser/extension/inject/pageScript')],
|
|
},
|
|
output: { path: path.join(__dirname, '../build/tmp') },
|
|
globals: {
|
|
'process.env': {
|
|
NODE_ENV: '"production"',
|
|
},
|
|
},
|
|
});
|