1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- module.exports = {
- mode: 'universal',
- /*
- ** Headers of the page
- */
- head: {
- title: 'NuxtJS Programming Courses | Yongun', //title: process.env.npm_package_name || '',
- meta: [
- { charset: 'utf-8' },
- { name: 'viewport', content: 'width=device-width, initial-scale=1' },
- // { hid: 'description', name: 'description', content: process.env.npm_package_description || '' }
- { hid: 'description', name: 'description', content: process.env.npm_package_description || '' },
- { hid: 'og:title', name: 'og:title', content: 'Learn from amazing courses | Filip Jerga' },
- { hid: 'og:locale', name: 'og:locale', content: 'en_EU' },
- { hid: 'og:url', name: 'og:url', content: process.env.BASE_URL || 'http://localhost:3000' },
- { hid: 'og:type', name: 'og:type', content: 'website' },
- { hid: 'og:image', name: 'og:image', content: 'https://images.unsplash.com/photo-1484417894907-623942c8ee29?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2389&q=80' },
- { hid: 'og:description', name: 'og:description', content: 'udemy에 동영상 컨텐츠를 배포하기 위해서 제작된 프로젝트' },
- ],
- link: [
- { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
- ],
- },
- /*
- ** Customize the progress-bar color
- */
- loading: { color: '#fff' },
- /*
- ** Global CSS
- */
- css: [
- '@/assets/scss/main.scss',
- '@/assets/css/icons.css'
- ],
- styleResources: {
- scss: [
- '@/assets/scss/_variables.scss'
- ]
- },
- /*
- ** Plugins to load before mounting the App
- */
- plugins: [
- {src: '~/plugins/filters'},
- {src: '~/plugins/vuelidate'},
- {src: '~/plugins/integrations'},
- {src: '~/plugins/components'},
- {src: '~/plugins/tooltip'},
- {src: '~/plugins/toasted', ssr: false},
- {src: '~/plugins/paginate', ssr: false}
- ],
- /*
- ** Nuxt.js modules
- */
- modules: [
- // Doc: https://axios.nuxtjs.org/usage
- '@nuxtjs/axios',
- 'portal-vue/nuxt',
- '@nuxtjs/style-resources'
- ],
- /*
- ** Axios module configuration
- ** See https://axios.nuxtjs.org/options
- */
- axios: {
- baseURL: process.env.BASE_URL || 'http://localhost:3000'
- },
- serverMiddleware: [
- '~/server/routes/index'
- ],
- /*
- ** Build configuration
- */
- build: {
- /*
- ** You can extend webpack config here
- */
- extend(config, ctx) {
- }
- }
- }
|