Skip to content

Commit

Permalink
Merge pull request #316 from Team-TenTen/develop
Browse files Browse the repository at this point in the history
[Release] v0.1.13
  • Loading branch information
dudwns authored Jul 17, 2024
2 parents 47d0d6f + a61030f commit 8be554a
Show file tree
Hide file tree
Showing 35 changed files with 681 additions and 224 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,7 @@ yarn-error.log*
next-env.d.ts

.vscode/
.env
.env

/public/sw.js*
/public/workbox-*
9 changes: 8 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
/** @type {import('next').NextConfig} */

const withPlugins = require('next-compose-plugins')

const withPWA = require('next-pwa')({
dest: 'public',
})

const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
compress: true,
})

const nextConfig = {
images: {
domains: ['linkhub-s3.s3.ap-northeast-2.amazonaws.com'],
Expand All @@ -24,4 +31,4 @@ const nextConfig = {
},
}

module.exports = withPWA(nextConfig)
module.exports = withPlugins([[withBundleAnalyzer], [withPWA]], nextConfig)
Loading

0 comments on commit 8be554a

Please sign in to comment.