reason-crossword-front/webpack.common.js
2020-08-29 15:15:31 -04:00

25 lines
546 B
JavaScript

const path = require('path');
const DIST_DIR = path.resolve(__dirname, "dist");
const SRC_DIR = path.resolve(__dirname, "src");
module.exports = {
entry: {
main: SRC_DIR + '/Index.bs.js',
},
output: {
path: DIST_DIR,
filename: '[name].js',
publicPath: '/'
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: {
loader: "babel-loader"
}
}
]
}
};