Nuxt is based on Vue.js and I find their building blocks to be much neater compared to the React based Next.js.
11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2024-11-01',
|
|
devtools: { enabled: true },
|
|
runtimeConfig: {
|
|
vapidPrivateKey: "",
|
|
public: {
|
|
vapidPublicKey: "",
|
|
}
|
|
}
|
|
})
|