Skip to content

Commit

Permalink
add seo-analyzer #41
Browse files Browse the repository at this point in the history
  • Loading branch information
ukorvl committed Jan 20, 2024
1 parent 8ec48cd commit 00e979d
Show file tree
Hide file tree
Showing 11 changed files with 3,200 additions and 77 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
- name: Build
run: npm run build

- name: Check seo
run: npm run check-seo

- name: e2e
uses: cypress-io/github-action@v5
with:
Expand Down
2 changes: 2 additions & 0 deletions lib/shared/useDisableBodyScroll.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import {useEffect} from 'react';

/**
Expand Down
2 changes: 2 additions & 0 deletions lib/shared/useDisableRightClick.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import {useEffect, useRef} from 'react';

/**
Expand Down
2 changes: 2 additions & 0 deletions lib/shared/useHover.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import type {MutableRefObject} from 'react';
import {useEffect, useRef, useState} from 'react';

Expand Down
2 changes: 2 additions & 0 deletions lib/shared/useNetworkSpeed.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import {useEffect, useState} from 'react';
import {isServer} from '@/utils/isServer';

Expand Down
2 changes: 2 additions & 0 deletions lib/shared/useWindowDimensions.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import {useEffect, useState} from 'react';
import debounce from 'lodash/debounce';
import {isServer} from '@/utils/isServer';
Expand Down
2 changes: 1 addition & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import './app/env.mjs';

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
output: 'export',
};

const withAnalyzer = withBundleAnalyzer({
Expand Down
Loading

0 comments on commit 00e979d

Please sign in to comment.