Skip to content

Commit

Permalink
remove extra pages/pages directory :(
Browse files Browse the repository at this point in the history
  • Loading branch information
craigrbarnes committed Dec 10, 2024
1 parent 8ef02ca commit c339bc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# docker build -t brhff .
# docker run -p 3000:3000 -it brhff
# Build stage
FROM node:20-slim AS builder

Expand Down
5 changes: 2 additions & 3 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import App, { AppProps, AppContext, AppInitialProps } from 'next/app';
import React, { useEffect, useRef } from 'react';

import { Faro, FaroErrorBoundary, withFaroProfiler } from '@grafana/faro-react';
import { initGrafanaFaro } from '../lib/Grafana/grafana';
import { initGrafanaFaro } from '@/lib/Grafana/grafana';

import {
Gen3Provider,
Expand All @@ -11,7 +11,6 @@ import {
RegisteredIcons,
Fonts,
SessionConfiguration,
// registerCohortDiscoveryApp,
registerCohortDiversityApp,
registerCohortBuilderDefaultPreviewRenderers,
registerExplorerDefaultCellRenderers,
Expand All @@ -27,7 +26,7 @@ import '@fontsource/poppins';

import { setDRSHostnames } from '@gen3/core';
import drsHostnames from '../../config/drsHostnames.json';
import { loadContent } from '../lib/content/loadContent';
import { loadContent } from '@/lib/content/loadContent';

if (typeof window !== 'undefined' && process.env.NODE_ENV !== 'production') {
// eslint-disable-next-line @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports
Expand Down

0 comments on commit c339bc8

Please sign in to comment.