mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
7 lines
280 B
JavaScript
7 lines
280 B
JavaScript
const path = require("path");
|
|
// Fix so that linux resources are found correctly
|
|
// since webpack will bundle them such that the expected path is /dist from cwd
|
|
process.chdir(path.resolve(path.dirname(process.execPath)));
|
|
// Now start loading the actual bundle
|
|
require("./dist");
|