diff --git a/content/event/monthly-meetup-1-31-2024.md b/content/event/monthly-meetup-1-31-2024.md index 341db57..e29f2b2 100644 --- a/content/event/monthly-meetup-1-31-2024.md +++ b/content/event/monthly-meetup-1-31-2024.md @@ -7,7 +7,7 @@ location: Frog Alley Brewing Co address: 108 State St, Schenectady time: 6:00 PM meetup: 298555131 -priority: 3 +priority: 2 --- ## Details diff --git a/content/event/monthly-meetup-6-26-2024.md b/content/event/monthly-meetup-6-26-2024.md index 945bf64..c246368 100644 --- a/content/event/monthly-meetup-6-26-2024.md +++ b/content/event/monthly-meetup-6-26-2024.md @@ -7,7 +7,7 @@ location: Druther's Brewing Company address: 7 Southside Drive, Clifton Park time: 6:00 PM meetup: 301820211 -priority: 2 +priority: 1 --- ## Details diff --git a/content/event/monthly-meetup-8-7-2024.md b/content/event/monthly-meetup-8-7-2024.md deleted file mode 100644 index 2550742..0000000 --- a/content/event/monthly-meetup-8-7-2024.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: Monthly Meetup -slug: monthly-meetup-8-7-2024 -date: 2024-8-7 -published: 2024-8-7 -location: Druther's Brewing Company -address: 221 Harborside Drive, Schenectady -time: 6:00 PM -priority: 1 ---- - -## Details - -Our monthly Bitcoin meetup! This is a Bitcoin only event. Whether you are interested in learning about Bitcoin, or are a seasoned pleb, come and hang out! We will have learning materials for those who are just starting out. - -This has grown into a great event about meeting new plebs, socializing, and talking all things bitcoin. Hope you all can make it! Feel free to bring a friend or two to orange pill :-). Appetizers and first hour of drinks will be provided. \ No newline at end of file diff --git a/content/event/multisig-workshop-1-3-2024.md b/content/event/multisig-workshop-1-3-2024.md index bb6fb9f..e40bb26 100644 --- a/content/event/multisig-workshop-1-3-2024.md +++ b/content/event/multisig-workshop-1-3-2024.md @@ -7,7 +7,7 @@ location: Mocha Lisa's Caffe address: 22 Clifton Country Road, Clifton Park time: 6:00 PM meetup: 298119830 -priority: 9999 +priority: 3 --- ## Details diff --git a/nuxt.config.ts b/nuxt.config.ts index 2ec96dd..730d412 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -2,21 +2,27 @@ export default defineNuxtConfig({ devtools: { enabled: false }, - modules: ['@nuxt/content', '@nuxtjs/device', ['nuxt-mail', { - message: { - to: process.env.EMAIL, - }, - smtp: { - host: process.env.SMTP_HOST, - port: process.env.SMTP_PORT, - auth: { - user: process.env.SMTP_USER, - pass: process.env.SMTP_PASS, + modules: [ + "@nuxt/content", + "@nuxtjs/device", + [ + "nuxt-mail", + { + message: { + to: process.env.EMAIL, + }, + smtp: { + host: process.env.SMTP_HOST, + port: process.env.SMTP_PORT, + auth: { + user: process.env.SMTP_USER, + pass: process.env.SMTP_PASS, + }, + }, }, - }, - }], "@nuxt/image"], - - css: [ - "~/assets/style/main.scss", + ], + "@nuxt/image", ], -}) \ No newline at end of file + + css: ["~/assets/style/main.scss"], +});