Skip to content

Commit

Permalink
chore: bump dependencies versions
Browse files Browse the repository at this point in the history
  • Loading branch information
barthofu committed Feb 11, 2024
1 parent 1b46016 commit bb4a80d
Show file tree
Hide file tree
Showing 7 changed files with 5,533 additions and 7,820 deletions.
1 change: 0 additions & 1 deletion articles/what-is-tscord.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ Talking about features, here are some of the core features of the template:
- **Scheduler** for cron jobs
- Built-in rich **statistics** system
- Automatic **static assets upload** to [imgur](https://imgur.com/)
- **WebSocket** server with decorators driven events system

This template is also developper friendly and follow strict design patterns to ease its maintenance:
- Written in **Typescript**
Expand Down
2 changes: 1 addition & 1 deletion config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const config: Config = {
footer: [

{ name: 'github', url: 'https://github.com/barthofu/tscord' },
{ name: 'support', url: 'https://discord.gg/8P7jFpbKkb' },
{ name: 'support', url: 'https://discord.gg/Q4w4UEWaDY' },
]
},

Expand Down
8 changes: 6 additions & 2 deletions next.config.js → next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
const path = require('path')
import path from 'path'
import { fileURLToPath } from 'url'

const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)

/** @type {import('next').NextConfig} */
const nextConfig = {
Expand All @@ -17,4 +21,4 @@ const nextConfig = {
}
}

module.exports = nextConfig
export default nextConfig
Loading

0 comments on commit bb4a80d

Please sign in to comment.