123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- export default {
- 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: process.env.npm_package_description || '' }
- ],
- link: [
- { rel: 'apple-touch-icon', sizes:'180x180', href: '/assets/images/favicons/apple-touch-icon.png' },
- // { rel: 'icon', type: 'image/png', sizes:'32x32', href: '/assets/images/favicons/favicon-32x32.png' },
- // { rel: 'icon', type: 'image/png', sizes:'16x16', href: '/assets/images/favicons/favicon-16x16.png' },
- {
- rel: "stylesheet",
- href:
- "https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900&display=swap"
- },
- { rel: "stylesheet", href: "/assets/css/bootstrap.min.css" },
- { rel: "stylesheet", href: "/assets/css/animate.min.css" },
- { rel: "stylesheet", href: "/assets/css/owl.carousel.min.css" },
- { rel: "stylesheet", href: "/assets/css/owl.theme.default.min.css" },
- { rel: "stylesheet", href: "/assets/css/magnific-popup.css" },
- { rel: "stylesheet", href: "/assets/css/font-awesome.min.css" },
- { rel: "stylesheet", href: "/assets/css/swiper.min.css" },
- { rel: "stylesheet", href: "/assets/plugins/dimon-icons/style.css" },
- { rel: "stylesheet", href: "/assets/css/style.css" },
- { rel: "stylesheet", href: "/assets/css/responsive.css" },
- ],
- script: [
- { src: "/assets/js/jquery.min.js", type: "text/javascript", body: true },
- { src: "/assets/js/bootstrap.bundle.min.js", type: "text/javascript", body: true },
- { src: "/assets/js/owl.carousel.min.js", type: "text/javascript", body: true },
- { src: "/assets/js/waypoints.min.js", type: "text/javascript", body: true },
- { src: "/assets/js/jquery.counterup.min.js", type: "text/javascript", body: true },
- { src: "/assets/js/TweenMax.min.js", type: "text/javascript", body: true },
- { src: "/assets/js/wow.js", type: "text/javascript", body: true },
- { src: "/assets/js/jquery.magnific-popup.min.js", type: "text/javascript", body: true },
- { src: "/assets/js/jquery.ajaxchimp.min.js", type: "text/javascript", body: true },
- { src: "/assets/js/swiper.min.js", type: "text/javascript", body: true },
- { src: "/assets/js/jquery.easing.min.js", type: "text/javascript", body: true },
- ]
- },
- /*
- ** 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.js modules
- */
- modules: [
- ],
- /*
- ** optimizedImages
- */
- optimizedImages: {
- optimizeImages: true
- },
- /*
- ** Build configuration
- */
- build: {
- /*
- ** You can extend webpack config here
- */
- extend (config, ctx) {
- }
- }
- }
|