|
const path = require("path");
|
|
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
mode: "development",
|
|
devtool: "eval",
|
|
optimization: {
|
|
concatenateModules: false
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
react: path.resolve(__dirname, "react")
|
|
}
|
|
}
|
|
};
|