Quellcode durchsuchen

Small cleanup

main
Steve Ruiz vor 4 Jahren
Ursprung
Commit
fcd1a8276d
7 geänderte Dateien mit 1675 neuen und 13 gelöschten Zeilen
  1. 527
    1
      public/sw.js
  2. 1133
    1
      public/workbox-ea903bce.js
  3. 1
    1
      public/worker-6L8AMbRb0NKpPgic9tDJq.js
  4. 6
    4
      sentry.client.config.js
  5. 6
    4
      sentry.server.config.js
  6. 1
    1
      state/index.ts
  7. 1
    1
      styles/index.ts

+ 527
- 1
public/sw.js
Datei-Diff unterdrückt, da er zu groß ist
Datei anzeigen


+ 1133
- 1
public/workbox-ea903bce.js
Datei-Diff unterdrückt, da er zu groß ist
Datei anzeigen


+ 1
- 1
public/worker-6L8AMbRb0NKpPgic9tDJq.js Datei anzeigen

1
-self.__WB_DISABLE_DEV_LOGS=!0;
1
+self.__WB_DISABLE_DEV_LOGS = !0

+ 6
- 4
sentry.client.config.js Datei anzeigen

2
 // The config you add here will be used whenever a page is visited.
2
 // The config you add here will be used whenever a page is visited.
3
 // https://docs.sentry.io/platforms/javascript/guides/nextjs/
3
 // https://docs.sentry.io/platforms/javascript/guides/nextjs/
4
 
4
 
5
-import * as Sentry from '@sentry/nextjs';
5
+import * as Sentry from '@sentry/nextjs'
6
 
6
 
7
-const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
7
+const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN
8
 
8
 
9
 Sentry.init({
9
 Sentry.init({
10
-  dsn: SENTRY_DSN || 'https://d88435642612471d93823489a56ae053@o578706.ingest.sentry.io/5824198',
10
+  dsn:
11
+    SENTRY_DSN ||
12
+    'https://d88435642612471d93823489a56ae053@o578706.ingest.sentry.io/5824198',
11
   // Note: if you want to override the automatic release value, do not set a
13
   // Note: if you want to override the automatic release value, do not set a
12
   // `release` value here - use the environment variable `SENTRY_RELEASE`, so
14
   // `release` value here - use the environment variable `SENTRY_RELEASE`, so
13
   // that it will also get attached to your source maps
15
   // that it will also get attached to your source maps
14
-});
16
+})

+ 6
- 4
sentry.server.config.js Datei anzeigen

2
 // The config you add here will be used whenever the server handles a request.
2
 // The config you add here will be used whenever the server handles a request.
3
 // https://docs.sentry.io/platforms/javascript/guides/nextjs/
3
 // https://docs.sentry.io/platforms/javascript/guides/nextjs/
4
 
4
 
5
-import * as Sentry from '@sentry/nextjs';
5
+import * as Sentry from '@sentry/nextjs'
6
 
6
 
7
-const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN;
7
+const SENTRY_DSN = process.env.SENTRY_DSN || process.env.NEXT_PUBLIC_SENTRY_DSN
8
 
8
 
9
 Sentry.init({
9
 Sentry.init({
10
-  dsn: SENTRY_DSN || 'https://d88435642612471d93823489a56ae053@o578706.ingest.sentry.io/5824198',
10
+  dsn:
11
+    SENTRY_DSN ||
12
+    'https://d88435642612471d93823489a56ae053@o578706.ingest.sentry.io/5824198',
11
   // Note: if you want to override the automatic release value, do not set a
13
   // Note: if you want to override the automatic release value, do not set a
12
   // `release` value here - use the environment variable `SENTRY_RELEASE`, so
14
   // `release` value here - use the environment variable `SENTRY_RELEASE`, so
13
   // that it will also get attached to your source maps
15
   // that it will also get attached to your source maps
14
-});
16
+})

+ 1
- 1
state/index.ts Datei anzeigen

1
-import state, { useSelector } from "./state"
1
+import state, { useSelector } from './state'
2
 
2
 
3
 export default state
3
 export default state
4
 
4
 

+ 1
- 1
styles/index.ts Datei anzeigen

4
   globalStyles,
4
   globalStyles,
5
   light,
5
   light,
6
   dark,
6
   dark,
7
-} from "./stitches.config"
7
+} from './stitches.config'
8
 
8
 
9
 export default styled
9
 export default styled
10
 export { css, getCssString, globalStyles, light, dark }
10
 export { css, getCssString, globalStyles, light, dark }

Laden…
Abbrechen
Speichern