Skip to content

Commit 30297d9

Browse files
committed
next js setup
1 parent 53f3716 commit 30297d9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+6864
-1
lines changed

.eslintrc.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": ["next", "next/core-web-vitals"],
3+
"rules": {
4+
// Add custom rules here
5+
}
6+
}

.gitignore

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
.yarn/install-state.gz
8+
9+
# testing
10+
/coverage
11+
12+
# next.js
13+
/.next/
14+
/out/
15+
16+
# production
17+
/build
18+
19+
# misc
20+
.DS_Store
21+
**/.DS_Store
22+
*.pem
23+
24+
# debug
25+
npm-debug.log*
26+
yarn-debug.log*
27+
yarn-error.log*
28+
29+
# local env files
30+
.env*.local
31+
32+
# vercel
33+
.vercel
34+
35+
# typescript
36+
*.tsbuildinfo
37+
next-env.d.ts
38+
39+
.env
40+
.env.test

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
# redis-playground-ui
1+
# Redis Playground UI
2+
3+
This is a UI for the [Redis Playground](https://github.com/PrasanKumar93/redis-playground) project.

next.config.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
const withBundleAnalyzer = require('@next/bundle-analyzer')({
3+
enabled: false,//process.env.ANALYZE === 'true',
4+
});
5+
6+
module.exports = withBundleAnalyzer({
7+
swcMinify: true, // Enable SWC minification
8+
reactStrictMode: true,
9+
output: "standalone", // lightweight standalone app
10+
});
11+

0 commit comments

Comments
 (0)