| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- export default {
- // Global page headers: https://go.nuxtjs.dev/config-head
- server: {
- port: 3000,
- host: '0.0.0.0'
- },
- mode: 'spa',
- head: {
- title: '',
- htmlAttrs: {
- lang: 'en'
- },
- meta: [{
- charset: 'utf-8'
- },
- {
- name: 'viewport',
- content: 'width=device-width, initial-scale=1'
- },
- {
- hid: 'description',
- name: 'description',
- content: ''
- },
- {
- name: 'format-detection',
- content: 'telephone=no'
- }
- ],
- link: [{
- rel: 'icon',
- type: 'image/x-icon',
- href: '/favicon.ico'
- }]
- },
- // Global CSS: https://go.nuxtjs.dev/config-css
- css: [
- '@/assets/css/common/icondiy.css',
- '@/assets/css/common/iconfont.css'
- ],
- // Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
- plugins: [
- '~/plugins/util.js',
- '~/plugins/config.js',
- '~/plugins/element-ui.js',
- { src: '~/plugins/video-player.js', ssr: false },
- { src: '~/plugins/route.js', ssr: false }
- ],
- // Auto import components: https://go.nuxtjs.dev/config-components
- components: true,
- // Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
- buildModules: [
- '@nuxtjs/style-resources'
- ],
- // Modules: https://go.nuxtjs.dev/config-modules
- modules: [
- '@nuxtjs/axios'
- ],
- // Build Configuration: https://go.nuxtjs.dev/config-build
- build: {
- transpile: [
- 'vue-piczoom',
- 'vue2-countdown'
- ],
- extractCSS: true,
- },
- styleResources: {
- scss: [
- '@/assets/css/common/main.scss',
- '@/assets/css/common/element-variables'
- ]
- },
- router: {
- base: '/web/'
- }
- }
|