mirror of
https://github.com/supleed2/ELEC60015-HLP-CW.git
synced 2024-11-10 02:05:48 +00:00
15 lines
215 B
JavaScript
15 lines
215 B
JavaScript
|
var path = require("path");
|
||
|
|
||
|
function resolve(filePath) {
|
||
|
return path.join(__dirname, filePath)
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
entry: resolve("src/Main/Main.fs.js"),
|
||
|
module: {
|
||
|
rules: [
|
||
|
|
||
|
]
|
||
|
}
|
||
|
}
|