Files
frontend-component-footer/config/webpack.common.config.js
2019-01-08 16:14:51 -05:00

16 lines
345 B
JavaScript
Executable File

// This is the common Webpack config. The dev and prod Webpack configs both
// inherit config defined here.
const path = require('path');
module.exports = {
entry: {
app: path.resolve(__dirname, '../src/index.jsx'),
},
output: {
path: path.resolve(__dirname, '../dist'),
},
resolve: {
extensions: ['.js', '.jsx'],
},
};