-
-
Save daichan4649/2eb1086316ae335ba6e1df481d05272a to your computer and use it in GitHub Desktop.
for blog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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