Skip to content

Instantly share code, notes, and snippets.

@daichan4649
Last active August 12, 2023 14:47
Show Gist options
  • Save daichan4649/2eb1086316ae335ba6e1df481d05272a to your computer and use it in GitHub Desktop.
Save daichan4649/2eb1086316ae335ba6e1df481d05272a to your computer and use it in GitHub Desktop.
for blog
export default defineNuxtConfig({
devtools: { enabled: true },
// firebase
nitro: {
preset: "firebase",
},
// tailwindcss
css: ["~/assets/css/main.css"],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
// env
// https://nuxt.com/docs/api/composables/use-runtime-config
runtimeConfig: {
openaiApiKey: process.env.OPENAI_API_KEY,
public: {}
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment