mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
6d059698a9
* add pug-stylus-coffee * fix eslit * fix eslint * fix eslint #3
49 lines
874 B
CoffeeScript
49 lines
874 B
CoffeeScript
pkg = require('./package')
|
|
module.exports =
|
|
mode: 'universal'
|
|
#
|
|
# Headers of the page
|
|
#
|
|
head:
|
|
title: pkg.name
|
|
meta:
|
|
[
|
|
{
|
|
charset: 'utf-8'
|
|
}
|
|
{
|
|
name: 'viewport'
|
|
content: 'width=device-width, initial-scale=1'
|
|
}
|
|
{
|
|
hid: 'description'
|
|
name: 'description'
|
|
content: pkg.description
|
|
}
|
|
]
|
|
link:
|
|
[
|
|
rel: 'icon'
|
|
type: 'image/x-icon'
|
|
href: '/favicon.ico'
|
|
]
|
|
# Customize the progress-bar color
|
|
loading:
|
|
{
|
|
color: '#3B8070'
|
|
}
|
|
# Global CSS
|
|
css: []
|
|
# Plugins to load before mounting the App
|
|
plugins: []
|
|
# Nuxt.js modules
|
|
modules:
|
|
[
|
|
'~/modules/coffeescript'
|
|
]
|
|
# Build configuration
|
|
build:
|
|
# You can extend webpack config here
|
|
extend = (config, ctx) ->
|
|
pass
|