mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-22 17:46:56 +03:00
6782f4ae41
* Move extension * prettier
15 lines
330 B
JavaScript
15 lines
330 B
JavaScript
import path from 'path';
|
|
import baseConfig from './base.config';
|
|
|
|
export default baseConfig({
|
|
input: {
|
|
page: [path.join(__dirname, '../src/browser/extension/inject/pageScript')],
|
|
},
|
|
output: { path: path.join(__dirname, '../build/tmp') },
|
|
globals: {
|
|
'process.env': {
|
|
NODE_ENV: '"production"',
|
|
},
|
|
},
|
|
});
|