Corey Jepperson

Results 26 comments of Corey Jepperson

@armanhoseini68 @nekooei Should just be able to add `'Access-Control-Allow-Origin': '*'` to your headers object. So `const headers = { 'cache-control': 'public, max-age=14400' }` becomes `const headers = { 'cache-control': 'public,...

Run with flag to not have make warnings result in errors `CFLAGS=-Wno-error ./guac-install.sh`

Seeing the same myself, lots of similar errors ``` [ ERROR ] sass: node_modules/@ionic/core/dist/collection/components/toolbar/toolbar.ios.scss, line: 213: node_modules/@ionic/core/dist/collection/components/toolbar/toolbar.ios.scss:213:14 expected selector. ╷ 213 │ @at-root @supports((margin-inline-start: 0) or (-webkit-margin-start: 0)){ │ ^...

Would implementing with Lucia make sense? https://lucia-auth.com/database-adapters/cloudflare-d1 https://github.com/pilcrowOnPaper/lucia

> Thank you! Small note, we are still very much interested, but our priority is on making the core more stable and finishing up the docs migration (https://next-auth.js.org and https://authjs.dev...

It's portable in that when you have data defined this way it can be used by a variety of consumers in a way that markdown and html can't be easily,...

Note that this blocks being able to use @authjs in remix node environments https://github.com/nextauthjs/next-auth/pull/6270

Hmm I'm struggling to think of ways to mock this test to work in CI as mocking the fetch obviously ruins the point, any thoughts @MichaelDeBoey @jacob-ebey

@MichaelDeBoey I pulled out the logic for creating the response so I could mock the fetch itself and test this which should pass in the CI now