mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-25 11:03:57 +03:00
17 lines
350 B
JavaScript
17 lines
350 B
JavaScript
import path from 'path';
|
|
import baseConfig from './base.config';
|
|
|
|
export default baseConfig({
|
|
output: { path: path.join(__dirname, '../build/extension') },
|
|
globals: {
|
|
'process.env': {
|
|
NODE_ENV: '"production"',
|
|
},
|
|
},
|
|
copy: true,
|
|
manifestJsonPath: path.join(
|
|
__dirname,
|
|
'../src/browser/extension/manifest.json'
|
|
),
|
|
});
|