-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.js
70 lines (60 loc) · 1.85 KB
/
nuxt.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import dotenv from 'dotenv';
require('dotenv').config();
export default {
target:'server',
server: {
},
head: {
title: "Nuxt 2 Open AI",
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: ' Nuxt 2 OpenAI Integration: Seamlessly integrate the power of OpenAI\'s natural language processing capabilities into your Nuxt.js 2 applications. This comprehensive package provides a simple and efficient way to leverage OpenAI\'s cutting-edge language models, enabling you to build intelligent and dynamic applications that can generate human-like text, perform language translation, sentiment analysis, and much more. Accelerate your development process and unlock the full potential of Nuxt.js and OpenAI with this feature-rich integration.'},
{ hid: 'keywords', name: 'keywords', content: 'Vue.js, Nuxt.js'}
],
link: [
{
rel: 'stylesheet',
href: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css',
integrity: 'sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm',
crossorigin: 'anonymous'
}
]
},
/*
** Global CSS
*/
css: [
],
/*
** Plugins to load before mounting the App
*/
plugins: [],
build: {
},
/*
** Nuxt.js dev-modules
*/
buildModules: [
],
/*
** Nuxt.js modules
*/
modules: [
'@nuxtjs/dotenv'
],
router: {
},
generate: {
routes: function () {
}
},
env: {
NODE_ENV: process.env.NODE_ENV
},
privateRuntimeConfig: {
axios: {
baseURL: process.env.BACKEND_API
}
},
}