25 lines
546 B
JavaScript
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"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
};
|