File tree Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 2
2
const nextConfig = {
3
3
reactStrictMode : true ,
4
4
webpack ( config ) {
5
+ config . module . rules . push ( {
6
+ test : / s u p a b a s e \/ .* / ,
7
+ use : 'ignore-loader' ,
8
+ } ) ;
5
9
config . module . rules . push ( {
6
10
test : / \. s v g $ / i,
7
11
issuer : / \. [ j t ] s x ? $ / ,
Original file line number Diff line number Diff line change 57
57
"eslint-plugin-prettier" : " ^4.0.0" ,
58
58
"eslint-plugin-react" : " ^7.29.4" ,
59
59
"eslint-plugin-react-hooks" : " ^4.3.0" ,
60
+ "ignore-loader" : " ^0.1.2" ,
60
61
"jest" : " ^28.1.1" ,
61
62
"jest-image-snapshot" : " ^5.1.0" ,
62
63
"jest-puppeteer-docker" : " https://github.com/bertuz/jest-puppeteer-docker.git#specify-docker-build" ,
Original file line number Diff line number Diff line change 1
1
// todo migrate to app router once this has been fixed https://github.com/emotion-js/emotion/issues/2928#issuecomment-1552963155
2
- import { getImageData } from './api/galleryPhotos' ;
3
-
4
2
import colors from '../assets/styles/colors' ;
5
3
6
4
import breakPoints , { MAX_MOBILE_WIDTH_PX } from '../assets/styles/breakPoints' ;
@@ -1012,7 +1010,7 @@ export async function getServerSideProps() {
1012
1010
} ;
1013
1011
}
1014
1012
1015
- const supabaseUrl = process . env . SUPABASE_NEXT_PUBLIC_SUPABASE_URL || ' ' ;
1013
+ const supabaseUrl = process . env . SUPABASE_NEXT_PUBLIC_SUPABASE_URL || '' ;
1016
1014
const supabaseAnonKey =
1017
1015
process . env . SUPABASE_NEXT_PUBLIC_SUPABASE_ANON_KEY || '' ;
1018
1016
Original file line number Diff line number Diff line change 36
36
" **/*.tsx"
37
37
],
38
38
"exclude" : [
39
- " node_modules"
39
+ " node_modules" ,
40
+ " supabase"
40
41
]
41
42
}
Original file line number Diff line number Diff line change @@ -5106,6 +5106,11 @@ ieee754@^1.1.13, ieee754@^1.2.1:
5106
5106
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
5107
5107
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
5108
5108
5109
+ ignore-loader@^0.1.2 :
5110
+ version "0.1.2"
5111
+ resolved "https://registry.yarnpkg.com/ignore-loader/-/ignore-loader-0.1.2.tgz#d81f240376d0ba4f0d778972c3ad25874117a463"
5112
+ integrity sha512-yOJQEKrNwoYqrWLS4DcnzM7SEQhRKis5mB+LdKKh4cPmGYlLPR0ozRzHV5jmEk2IxptqJNQA5Cc0gw8Fj12bXA==
5113
+
5109
5114
ignore@^5.2.0, ignore@^5.2.4 :
5110
5115
version "5.2.4"
5111
5116
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
You can’t perform that action at this time.
0 commit comments