11 lines
189 B
JavaScript
11 lines
189 B
JavaScript
const commonPaths = require("./common-paths");
|
|
|
|
const config = {
|
|
entry: "./src/",
|
|
output: {
|
|
filename: "bundle.js",
|
|
path: commonPaths.outputPath
|
|
}
|
|
};
|
|
|
|
module.exports = config;
|