Skip to content

Commit d4be92d

Browse files
paractmolAidan Rudkovskyi
authored andcommitted
Simplify logic, remove unsed code, update packages
1 parent 58a5d96 commit d4be92d

File tree

23 files changed

+17047
-22718
lines changed

23 files changed

+17047
-22718
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
7+
[*.{js,json,yml}]
8+
charset = utf-8
9+
indent_style = space
10+
indent_size = 2

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,5 @@ yarn-error.log*
3636
# typescript
3737
*.tsbuildinfo
3838

39-
.env
39+
.env
40+
/.yarn

.yarnrc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
nodeLinker: node-modules
2+
3+
plugins:
4+
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
5+
spec: "@yarnpkg/plugin-interactive-tools"
6+
7+
yarnPath: .yarn/releases/yarn-berry.js

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
FROM node:current-alpine3.15
1+
FROM node:current-alpine3.16
22

33
COPY docker-entrypoint.sh /
44

55
ENTRYPOINT ["sh", "./docker-entrypoint.sh"]
66

77
WORKDIR /app
8-
COPY package.json /app
8+
COPY package.json /app
99
COPY yarn.lock /app
1010
RUN yarn install
1111
COPY . /app
1212

13-
EXPOSE 3000
13+
EXPOSE 3000

next-env.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/// <reference types="next" />
2-
/// <reference types="next/types/global" />
32
/// <reference types="next/image-types/global" />
43

54
// NOTE: This file should not be edited

next.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ const plugins = [
4242

4343
const nextConfig = {
4444
images: {
45-
domains: ['www.arweave.net', 'arweave.net'],
45+
domains: ["www.arweave.net", "arweave.net"],
4646
},
4747
distDir: "build",
48-
swcMinify: true,
48+
swcMinify: false,
4949
webpack: (config, { isServer }) => {
5050
if (!isServer) {
5151
config.resolve.fallback.fs = false;

0 commit comments

Comments
 (0)