Skip to content

Commit

Permalink
Merge pull request #7 from ananyo141/feat/frontend
Browse files Browse the repository at this point in the history
Frontend Code
  • Loading branch information
ananyo141 authored May 11, 2024
2 parents 2d2ea80 + 6f32761 commit 3b186e4
Show file tree
Hide file tree
Showing 69 changed files with 11,140 additions and 598 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added web-client/bun.lockb
Binary file not shown.
15 changes: 14 additions & 1 deletion web-client/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {

images: {
domains: ['videosite.ddns.net'],
},
webpack: (
config,
{ buildId, dev, isServer, defaultLoaders, nextRuntime, webpack }
) => {
config.module.rules.push({ test: /\.graphql?$/, loader: 'webpack-graphql-loader' });
return config
},
skipTrailingSlashRedirect: true,
};

export default nextConfig;
Loading

0 comments on commit 3b186e4

Please sign in to comment.