Files
frontend-app-gradebook/config/webpack.common.config.js
Rick Reilly bff0375176 First commit
2018-10-17 11:50:17 -04: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'],
},
};