Несколько точек входа для nuxt.js - PullRequest
0 голосов
/ 11 декабря 2018

Я новичок с веб-пакетом, и мне было интересно, как я могу настроить несколько точек входа, используя nuxt.js framework.

Я просматривал новейшую документацию по веб-пакету, https://webpack.js.org/concepts/entry-points/#object-syntax

module.exports = {
/*
 ** Headers of the page
 */
head: {
    title: 'nuxt-boilerplate',
    meta: [
        { charset: 'utf-8' },
        { name: 'viewport', content: 'width=device-width, initial-scale=1' },
        {
            hid: 'description',
            name: 'description',
            content: 'Meming'
        }
    ],
    link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }]
},
/*
 ** Customize the progress bar color
 */
loading: { color: '#3B8070' },
/*
 ** Build configuration
 */
build: {
    // analyze: true,
    /*
     * 
     ** Run ESLint on save
     */
    extend(config, { isDev, isClient }) {
        if (isDev && isClient) {
            config.module.rules.push({
                enforce: 'pre',
                test: /\.(js|vue)$/,
                // loader: 'eslint-loader',
                exclude: /(node_modules)/
            })
        }
    }
},
srcDir: 'src/',
rootDir: './'
}

Любые советы будут высоко оценены:)

...