mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 19:52:29 +00:00
* Initial Commit GammaWorld 3e This initial commit includes everything necessary to generate the sheet html, css and companion script. Insrtuctions in the README * Added sheet.json - Updated README - added preview png * Updated paths and sheet.json PR validation didn't like the html and css in a subfolder.
11 lines
224 B
JavaScript
11 lines
224 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
entry: "./src/api-scripts/companion.js",
|
|
output: {
|
|
filename: "merged-compendium-companion.js",
|
|
path: path.resolve(__dirname, "."),
|
|
},
|
|
mode: "development",
|
|
};
|