* Convert worker to ESM To use ESM for the worker, I created a package.json file in worker/ with `{ type: "module" }` as its sole content. I then rewrote every import to use ESM syntax. I also tried to set `{ type: "module" }` in the root package.json file to also use ESM in next.config.js. However, this resulted in a weird problem: default imports were now getting imported as objects in this shape: `{ default: <defaultImport> }`. Afaik, this should only be the case if you use "import * as foo from 'bar'" syntax: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#default_import This is fixed by not using `{ type: "module" }` for some reason. However, then, next.config.js also doesn't support ESM import syntax anymore. The documentation says that if you want to use ESM, you can use next.config.mjs: https://nextjs.org/docs/pages/api-reference/next-config-js But I didn't want to use MJS extension since I don't have any experience with it. For example, not sure if it's good style to mix JS with MJS etc. So I kept the CJS import syntax there. * Ignore worker/ during linting I wasn't able to fix the following errors: /home/runner/work/stacker.news/stacker.news/worker/auction.js:0:0: Parsing error: No Babel config file detected for /home/runner/work/stacker.news/stacker.news/worker/auction.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files. (null) /home/runner/work/stacker.news/stacker.news/worker/earn.js:0:0: Parsing error: No Babel config file detected for /home/runner/work/stacker.news/stacker.news/worker/earn.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files. (null) /home/runner/work/stacker.news/stacker.news/worker/index.js:0:0: Parsing error: No Babel config file detected for /home/runner/work/stacker.news/stacker.news/worker/index.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files. (null) /home/runner/work/stacker.news/stacker.news/worker/nostr.js:0:0: Parsing error: No Babel config file detected for /home/runner/work/stacker.news/stacker.news/worker/nostr.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files. (null) /home/runner/work/stacker.news/stacker.news/worker/ots.js:0:0: Parsing error: No Babel config file detected for /home/runner/work/stacker.news/stacker.news/worker/ots.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files. (null) /home/runner/work/stacker.news/stacker.news/worker/repin.js:0:0: Parsing error: No Babel config file detected for /home/runner/work/stacker.news/stacker.news/worker/repin.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files. (null) /home/runner/work/stacker.news/stacker.news/worker/search.js:0:0: Parsing error: No Babel config file detected for /home/runner/work/stacker.news/stacker.news/worker/search.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files. (null) /home/runner/work/stacker.news/stacker.news/worker/streak.js:0:0: Parsing error: No Babel config file detected for /home/runner/work/stacker.news/stacker.news/worker/streak.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files. (null) /home/runner/work/stacker.news/stacker.news/worker/trust.js:0:0: Parsing error: No Babel config file detected for /home/runner/work/stacker.news/stacker.news/worker/trust.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files. (null) /home/runner/work/stacker.news/stacker.news/worker/views.js:0:0: Parsing error: No Babel config file detected for /home/runner/work/stacker.news/stacker.news/worker/views.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files. (null) /home/runner/work/stacker.news/stacker.news/worker/wallet.js:0:0: Parsing error: No Babel config file detected for /home/runner/work/stacker.news/stacker.news/worker/wallet.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files. (null) I tried to tell babel where to find the babel config file (.babelrc), specifying the babel config in worker/package.json under "babel", using babel.config.json etc. to no avail. However, afaict, we don't need babel for the worker since it won't run in a browser. Babel is only used to transpile code to target browsers. But it still would be nice to lint the worker code with standard. But we can figure this out later. * Fix worker imports from lib/ and api/ This fixes the issue that we can't use `{ "type": "module" }` in the root package.json since it breaks the app with this error: app | TypeError: next_auth_providers_credentials__WEBPACK_IMPORTED_MODULE_2__ is not a function app | at eval (webpack-internal:///./pages/api/auth/[...nextauth].js:218:20) app | at process.processTicksAndRejections (node:internal/process/task_queues:95:5) app | LND GRPC connection successful app | - error pages/api/auth/[...nextauth].js (139:2) @ CredentialsProvider app | - error Error [TypeError]: next_auth_providers_credentials__WEBPACK_IMPORTED_MODULE_2__ is not a function app | at eval (webpack-internal:///./pages/api/auth/[...nextauth].js:218:20) { app | digest: undefined app | } app | 137 | app | 138 | const providers = [ app | > 139 | CredentialsProvider({ app | | ^ app | 140 | id: 'lightning', app | 141 | name: 'Lightning', app | 142 | credentials: { app | TypeError: next_auth_providers_credentials__WEBPACK_IMPORTED_MODULE_2__ is not a function app | at eval (webpack-internal:///./pages/api/auth/[...nextauth].js:218:20) app | at process.processTicksAndRejections (node:internal/process/task_queues:95:5) build but we need to tell the worker that the files are MJS, else we get this error: worker | file:///app/worker/wallet.js:3 worker | import { datePivot } from '../lib/time.js' worker | ^^^^^^^^^ worker | SyntaxError: Named export 'datePivot' not found. The requested module '../lib/time.js' is a CommonJS module, which may not support all module.exports as named exports. worker | CommonJS modules can always be imported via the default export, for example using: worker | worker | import pkg from '../lib/time.js'; worker | const { datePivot } = pkg; worker | worker | at ModuleJob._instantiate (node:internal/modules/esm/module_job:124:21) worker | at async ModuleJob.run (node:internal/modules/esm/module_job:190:5) worker | worker | Node.js v18.17.0 worker | worker exited with code 1 * Fix global not defined in browser context * Also ignore api/ and lib/ during linting I did not want to do this but I was not able to fix this error in any other way I tried: /home/ekzyis/programming/stacker.news/api/lnd/index.js:0:0: Parsing error: No Babel config file detected for /home/ekzyis/programming/stacker.news/api/lnd/index.js. Either disable config file checking with requ ireConfigFile: false, or configure Babel so that it can find the config files. (null) Did not want to look deeper into all this standard, eslint, babel configuration stuff ... --------- Co-authored-by: ekzyis <ek@stacker.news> Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com>
197 lines
5.4 KiB
JavaScript
197 lines
5.4 KiB
JavaScript
const { withPlausibleProxy } = require('next-plausible')
|
|
const { InjectManifest } = require('workbox-webpack-plugin')
|
|
const { generatePrecacheManifest } = require('./sw/build.js')
|
|
|
|
const isProd = process.env.NODE_ENV === 'production'
|
|
const corsHeaders = [
|
|
{
|
|
key: 'Access-Control-Allow-Origin',
|
|
value: '*'
|
|
},
|
|
{
|
|
key: 'Access-Control-Allow-Methods',
|
|
value: 'GET, HEAD, OPTIONS'
|
|
}
|
|
]
|
|
|
|
let commitHash
|
|
if (isProd) {
|
|
// XXX this fragile ... eb could change the version label ... but it works for now
|
|
commitHash = Object.keys(require('/opt/elasticbeanstalk/deployment/app_version_manifest.json').RuntimeSources['stacker.news'])[0].match(/^app-(.+)-/)[1] // eslint-disable-line
|
|
} else {
|
|
try {
|
|
commitHash = require('child_process').execSync('git rev-parse HEAD').toString().slice(0, 4)
|
|
} catch (e) {
|
|
console.log('could not get commit hash with `git rev-parse HEAD` ... using 0000')
|
|
commitHash = '0000'
|
|
}
|
|
}
|
|
|
|
module.exports = withPlausibleProxy()({
|
|
env: {
|
|
NEXT_PUBLIC_COMMIT_HASH: commitHash,
|
|
NEXT_PUBLIC_LND_CONNECT_ADDRESS: process.env.LND_CONNECT_ADDRESS,
|
|
NEXT_PUBLIC_ASSET_PREFIX: isProd ? 'https://a.stacker.news' : ''
|
|
},
|
|
compress: false,
|
|
experimental: {
|
|
scrollRestoration: true
|
|
},
|
|
reactStrictMode: true,
|
|
generateBuildId: isProd ? async () => commitHash : undefined,
|
|
// Use the CDN in production and localhost for development.
|
|
assetPrefix: isProd ? 'https://a.stacker.news' : undefined,
|
|
crossOrigin: isProd ? 'anonymous' : undefined,
|
|
async headers () {
|
|
return [
|
|
{
|
|
source: '/',
|
|
headers: [
|
|
{
|
|
// This tells the browser to send this client hint in subsequent requests
|
|
// Only added to the "/" path since that's what is initially loaded for the PWA
|
|
key: 'Accept-CH',
|
|
value: 'Sec-CH-Prefers-Color-Scheme'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
source: '/_next/:asset*',
|
|
headers: corsHeaders
|
|
},
|
|
{
|
|
source: '/.well-known/:slug*',
|
|
headers: [
|
|
...corsHeaders
|
|
]
|
|
},
|
|
// never cache service worker
|
|
// https://stackoverflow.com/questions/38843970/service-worker-javascript-update-frequency-every-24-hours/38854905#38854905
|
|
{
|
|
source: '/sw.js',
|
|
headers: [{
|
|
key: 'Cache-Control',
|
|
value: 'no-cache'
|
|
}]
|
|
},
|
|
{
|
|
source: '/api/lnauth',
|
|
headers: [
|
|
...corsHeaders
|
|
]
|
|
},
|
|
{
|
|
source: '/api/lnurlp/:slug*',
|
|
headers: [
|
|
...corsHeaders
|
|
]
|
|
},
|
|
{
|
|
source: '/api/lnwith',
|
|
headers: [
|
|
...corsHeaders
|
|
]
|
|
},
|
|
...['tff', 'woff', 'woff2'].map(ext => ({
|
|
source: `/Lightningvolt-xoqm.${ext}`,
|
|
headers: [
|
|
...corsHeaders,
|
|
{
|
|
key: 'Cache-Control',
|
|
value: 'public, max-age=31536000, immutable'
|
|
}
|
|
]
|
|
}))
|
|
]
|
|
},
|
|
async rewrites () {
|
|
return [
|
|
{
|
|
source: '/faq',
|
|
destination: '/items/349'
|
|
},
|
|
{
|
|
source: '/story',
|
|
destination: '/items/1620'
|
|
},
|
|
{
|
|
source: '/privacy',
|
|
destination: '/items/76894'
|
|
},
|
|
{
|
|
source: '/changes',
|
|
destination: '/items/78763'
|
|
},
|
|
{
|
|
source: '/guide',
|
|
destination: '/items/81862'
|
|
},
|
|
{
|
|
source: '/daily',
|
|
destination: '/api/daily'
|
|
},
|
|
{
|
|
source: '/.well-known/lnurlp/:username',
|
|
destination: '/api/lnurlp/:username'
|
|
},
|
|
{
|
|
source: '/.well-known/nostr.json',
|
|
destination: '/api/nostr/nip05'
|
|
},
|
|
{
|
|
source: '/.well-known/web-app-origin-association',
|
|
destination: '/api/web-app-origin-association'
|
|
},
|
|
{
|
|
source: '/~:sub/:slug*\\?:query*',
|
|
destination: '/~/:slug*?:query*&sub=:sub'
|
|
},
|
|
{
|
|
source: '/~:sub/:slug*',
|
|
destination: '/~/:slug*?sub=:sub'
|
|
},
|
|
...['/', '/post', '/search', '/rss', '/recent/:slug*', '/top/:slug*'].map(source => ({ source, destination: '/~' + source }))
|
|
]
|
|
},
|
|
async redirects () {
|
|
return [
|
|
{
|
|
source: '/statistics',
|
|
destination: '/satistics?inc=invoice,withdrawal',
|
|
permanent: true
|
|
}
|
|
]
|
|
},
|
|
webpack: (config, { isServer, dev }) => {
|
|
if (isServer) {
|
|
generatePrecacheManifest()
|
|
const workboxPlugin = new InjectManifest({
|
|
// ignore the precached manifest which includes the webpack assets
|
|
// since they are not useful to us
|
|
exclude: [/.*/],
|
|
// by default, webpack saves service worker at .next/server/
|
|
swDest: '../../public/sw.js',
|
|
swSrc: './sw/index.js'
|
|
})
|
|
if (dev) {
|
|
// Suppress the "InjectManifest has been called multiple times" warning by reaching into
|
|
// the private properties of the plugin and making sure it never ends up in the state
|
|
// where it makes that warning.
|
|
// https://github.com/GoogleChrome/workbox/blob/v6/packages/workbox-webpack-plugin/src/inject-manifest.ts#L260-L282
|
|
Object.defineProperty(workboxPlugin, 'alreadyCalled', {
|
|
get () {
|
|
return false
|
|
},
|
|
set () {
|
|
// do nothing; the internals try to set it to true, which then results in a warning
|
|
// on the next run of webpack.
|
|
}
|
|
})
|
|
}
|
|
|
|
config.plugins.push(workboxPlugin)
|
|
}
|
|
return config
|
|
}
|
|
})
|