eduproj/nuxt.config.js

51 lines
1.5 KiB
JavaScript
Raw Normal View History

2021-12-28 07:01:39 +00:00
export default {
// Global page headers: https://go.nuxtjs.dev/config-head
2021-12-28 07:12:59 +00:00
"head": {
"title": "eduproj",
"htmlAttrs": {
"lang": "en",
2021-12-28 07:01:39 +00:00
},
2021-12-28 07:12:59 +00:00
"meta": [
{ "charset": "utf-8" },
{ "name": "viewport", "content": "width=device-width, initial-scale=1" },
{ "hid": "description", "name": "description", "content": "" },
{ "name": "format-detection", "content": "telephone=no" },
2021-12-28 07:01:39 +00:00
],
2021-12-28 07:12:59 +00:00
"link": [{ "rel": "icon", "type": "image/x-icon", "href": "/favicon.ico" }],
2021-12-28 07:01:39 +00:00
},
// Global CSS: https://go.nuxtjs.dev/config-css
2021-12-28 07:12:59 +00:00
"css": [],
2021-12-28 07:01:39 +00:00
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
2021-12-28 07:12:59 +00:00
"plugins": [],
2021-12-28 07:01:39 +00:00
// Auto import components: https://go.nuxtjs.dev/config-components
2021-12-28 07:12:59 +00:00
"components": true,
2021-12-28 07:01:39 +00:00
// Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
2021-12-28 07:12:59 +00:00
"buildModules": [
2021-12-28 07:01:39 +00:00
// https://go.nuxtjs.dev/typescript
2021-12-28 07:12:59 +00:00
"@nuxt/typescript-build",
2021-12-28 07:01:39 +00:00
],
// Modules: https://go.nuxtjs.dev/config-modules
2021-12-28 07:12:59 +00:00
"modules": [
2021-12-28 07:01:39 +00:00
// https://go.nuxtjs.dev/buefy
2021-12-28 07:12:59 +00:00
"nuxt-buefy",
2021-12-28 07:01:39 +00:00
// https://go.nuxtjs.dev/axios
2021-12-28 07:12:59 +00:00
"@nuxtjs/axios",
2021-12-28 07:01:39 +00:00
],
// Axios module configuration: https://go.nuxtjs.dev/config-axios
2021-12-28 07:12:59 +00:00
"axios": {
2021-12-28 07:01:39 +00:00
// Workaround to avoid enforcing hard-coded localhost:3000: https://github.com/nuxt-community/axios-module/issues/308
2021-12-28 07:12:59 +00:00
"baseURL": "/",
2021-12-28 07:01:39 +00:00
},
// Build Configuration: https://go.nuxtjs.dev/config-build
2021-12-28 07:12:59 +00:00
"build": {},
2021-12-28 07:01:39 +00:00
2021-12-28 07:12:59 +00:00
"serverMiddleware": [{ "path": "/api", "handler": "~/api" }],
2021-12-28 07:01:39 +00:00
};