mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 06:55:08 -04:00
12 lines
219 B
JavaScript
12 lines
219 B
JavaScript
![]() |
/* eslint-env node */
|
||
|
|
||
|
var path = require("path");
|
||
|
|
||
|
module.exports = {
|
||
|
entry: "./src/js/views/html/index.js",
|
||
|
output: {
|
||
|
filename: "bundle.js",
|
||
|
path: path.resolve(__dirname, "build/dev")
|
||
|
}
|
||
|
};
|