Will Munslow
Will Munslow
I think this PR will solve your problem: https://github.com/garmeeh/local-cors-proxy/pull/27
I guess I'm glad I'm not the only one. I tried to read through the documentation to see if something was misconfigured, but nothing obvious is missing.
Kind of. I manually copied the assets that were compiled into the directory it was looking in. If you make any asset changes, you'll have to perform this manual step...
He uses https://www.npmjs.com/package/path-to-regexp for path matching
+1 my own suggestion 🤣
This is interesting. I see in Terminal, and Apple app, the close button is on the left side of the tab. But in apps that tend to be cross-platform (Chrome,...
I've been running into this as well. Using 'zip -T foo.zip' on the command line will tell me which file in the archive is bad. Usually, I rebuild the archive...
This hack worked for me. in main program: ``` import { NODE_CONFIG_DIR, SUPPRESS_NO_CONFIG_WARNING } from "./env.js"; import config from "config"; ``` in env.js: ``` process.env.NODE_CONFIG_DIR = process.cwd(); process.env.SUPPRESS_NO_CONFIG_WARNING = "true";...
I had to use `path.resolve` instead of `path.join` in the context hack to get the absolute path. I'm not sure why the relative path didn't work, it appears to be...