mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-23 10:03:53 +03:00
de1fd3add6
* chore(extension): compile pug files using Webpack * prettier
21 lines
454 B
JavaScript
21 lines
454 B
JavaScript
import path from 'path';
|
|
import webpack from 'webpack';
|
|
import baseConfig from './base.config';
|
|
|
|
let config = baseConfig({
|
|
inputExtra: {
|
|
page: [path.join(__dirname, '../src/browser/extension/inject/pageScript')],
|
|
},
|
|
output: { path: path.join(__dirname, '../dev') },
|
|
globals: {
|
|
'process.env': {
|
|
NODE_ENV: '"development"',
|
|
},
|
|
},
|
|
plugins: [new webpack.NoEmitOnErrorsPlugin()],
|
|
});
|
|
|
|
config.watch = true;
|
|
|
|
export default config;
|