-
Notifications
You must be signed in to change notification settings - Fork 1
/
nuxt.config.js
71 lines (70 loc) · 2.18 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
71
module.exports = {
mode: 'universal',
/*
** Headers of the page
*/
head: {
title: '将棋ウェブルーム',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: 'リアルタイムで同期する将棋盤を複数人が自由に操作できるWebアプリ。自由対局や感想戦、研究会などに。ドラッグ&ドロップ対応。スマートフォン、タブレット対応(レスポンシブ)。SFEN形式(USI)入出力対応。' },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:site', content: '@shogiwebroom' },
{ property: 'og:url', content: 'https://shogiwebroom.herokuapp.com/' },
{ property: 'og:title', content: '将棋ウェブルーム' },
{ property: 'og:description', content: 'ブラウザで気軽に将棋盤を囲めるWebアプリ。ログイン不要、URL共有で何人でも入室可。リアルタイム同期、ドラッグ&ドロップ対応、スマートフォン・タブレット対応、簡易チャット機能などが特徴。研究会などにお使いください。' },
{ property: 'og:image', content: 'https://shogiwebroom.herokuapp.com/logo-twitter-card.png' },
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: "apple-touch-icon", sizes: "180x180", href: "/apple-touch-icon.png" },
]
},
/*
** Customize the progress-bar color
*/
loading: { color: '#fff' },
/*
** Global CSS
*/
css: [
],
/*
** Plugins to load before mounting the App
*/
plugins: [
],
/*
** Nuxt.js dev-modules
*/
buildModules: [
'@nuxt/typescript-build',
],
/*
** Nuxt.js modules
*/
modules: [
'bootstrap-vue/nuxt',
],
/*
** Build configuration
*/
build: {
vendor: [
"socket.io-client"
],
/*
** You can extend webpack config here
*/
extend (config, ctx) {
config.module.rules.push({
test: /\.(ogg|mp3|wav|mpe?g)$/i,
loader: 'file-loader',
options: {
name: '[path][name].[ext]'
}
})
}
}
}