2018-03-16 19:11:24 +00:00
|
|
|
import path from 'path'
|
2020-05-07 19:08:01 +00:00
|
|
|
import chalk from 'chalk'
|
2018-03-31 16:22:14 +00:00
|
|
|
import consola from 'consola'
|
2018-10-24 16:55:18 +00:00
|
|
|
import fsExtra from 'fs-extra'
|
|
|
|
import htmlMinifier from 'html-minifier'
|
2020-05-07 19:08:01 +00:00
|
|
|
import { parse } from 'node-html-parser'
|
2018-10-17 21:28:25 +00:00
|
|
|
|
2020-05-07 19:08:01 +00:00
|
|
|
import { isFullStatic, flatRoutes, isString, isUrl, promisifyRoute, waitFor, TARGETS, MODES } from '@nuxt/utils'
|
2018-03-31 16:22:14 +00:00
|
|
|
|
2018-03-16 16:12:06 +00:00
|
|
|
export default class Generator {
|
2019-07-10 10:45:49 +00:00
|
|
|
constructor (nuxt, builder) {
|
2017-06-11 14:17:36 +00:00
|
|
|
this.nuxt = nuxt
|
|
|
|
this.options = nuxt.options
|
2017-06-18 15:44:01 +00:00
|
|
|
this.builder = builder
|
2020-05-07 19:08:01 +00:00
|
|
|
this.isFullStatic = false
|
2017-07-03 11:11:40 +00:00
|
|
|
|
|
|
|
// Set variables
|
2018-03-16 19:11:24 +00:00
|
|
|
this.staticRoutes = path.resolve(this.options.srcDir, this.options.dir.static)
|
2018-08-20 16:04:55 +00:00
|
|
|
this.srcBuiltPath = path.resolve(this.options.buildDir, 'dist', 'client')
|
2018-09-14 07:06:44 +00:00
|
|
|
this.distPath = this.options.generate.dir
|
2018-03-16 19:11:24 +00:00
|
|
|
this.distNuxtPath = path.join(
|
2018-01-11 18:20:35 +00:00
|
|
|
this.distPath,
|
|
|
|
isUrl(this.options.build.publicPath) ? '' : this.options.build.publicPath
|
|
|
|
)
|
2020-05-07 19:08:01 +00:00
|
|
|
this.generatedRoutes = new Set()
|
2017-05-11 12:06:57 +00:00
|
|
|
}
|
2017-06-11 14:17:36 +00:00
|
|
|
|
2019-07-10 10:45:49 +00:00
|
|
|
async generate ({ build = true, init = true } = {}) {
|
2018-04-01 20:20:46 +00:00
|
|
|
consola.debug('Initializing generator...')
|
2017-11-23 22:31:54 +00:00
|
|
|
await this.initiate({ build, init })
|
|
|
|
|
2020-05-07 19:08:01 +00:00
|
|
|
// Payloads for full static
|
|
|
|
if (this.isFullStatic) {
|
|
|
|
consola.info('Full static mode activated')
|
|
|
|
const { staticAssets } = this.options.generate
|
|
|
|
this.staticAssetsDir = path.resolve(this.distNuxtPath, staticAssets.dir, staticAssets.version)
|
|
|
|
this.staticAssetsBase = this.options.generate.staticAssets.versionBase
|
|
|
|
}
|
2018-03-13 17:16:12 +00:00
|
|
|
|
2020-05-07 19:08:01 +00:00
|
|
|
consola.debug('Preparing routes for generate...')
|
2017-11-23 22:31:54 +00:00
|
|
|
const routes = await this.initRoutes()
|
|
|
|
|
2018-11-01 03:50:07 +00:00
|
|
|
consola.info('Generating pages')
|
2017-11-23 22:31:54 +00:00
|
|
|
const errors = await this.generateRoutes(routes)
|
2018-03-13 17:16:12 +00:00
|
|
|
|
2017-11-23 22:31:54 +00:00
|
|
|
await this.afterGenerate()
|
|
|
|
|
2018-01-11 18:20:35 +00:00
|
|
|
// Done hook
|
2017-11-23 22:31:54 +00:00
|
|
|
await this.nuxt.callHook('generate:done', this, errors)
|
|
|
|
|
|
|
|
return { errors }
|
|
|
|
}
|
|
|
|
|
2019-07-10 10:45:49 +00:00
|
|
|
async initiate ({ build = true, init = true } = {}) {
|
2017-10-30 21:39:08 +00:00
|
|
|
// Wait for nuxt be ready
|
|
|
|
await this.nuxt.ready()
|
|
|
|
|
|
|
|
// Call before hook
|
|
|
|
await this.nuxt.callHook('generate:before', this, this.options.generate)
|
|
|
|
|
2017-08-17 12:43:51 +00:00
|
|
|
if (build) {
|
2017-11-29 17:28:19 +00:00
|
|
|
// Add flag to set process.static
|
|
|
|
this.builder.forGenerate()
|
|
|
|
|
|
|
|
// Start build process
|
2017-06-18 15:44:01 +00:00
|
|
|
await this.builder.build()
|
2020-05-07 19:08:01 +00:00
|
|
|
this.isFullStatic = isFullStatic(this.options)
|
|
|
|
} else {
|
2020-05-08 14:37:42 +00:00
|
|
|
const hasBuilt = await fsExtra.exists(path.resolve(this.options.buildDir, 'dist', 'server', 'client.manifest.json'))
|
2020-05-07 19:08:01 +00:00
|
|
|
if (!hasBuilt) {
|
2020-05-08 14:37:42 +00:00
|
|
|
const fullStaticArgs = isFullStatic(this.options) ? ' --target static' : ''
|
2020-05-07 19:08:01 +00:00
|
|
|
throw new Error(
|
2020-05-08 14:37:42 +00:00
|
|
|
`No build files found in ${this.srcBuiltPath}.\nPlease run \`nuxt build${fullStaticArgs}\` before calling \`nuxt export\``
|
2020-05-07 19:08:01 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
const config = this.getBuildConfig()
|
2020-05-08 11:55:39 +00:00
|
|
|
if (!config || config.target !== TARGETS.static) {
|
2020-05-07 19:08:01 +00:00
|
|
|
throw new Error(
|
|
|
|
`In order to use \`nuxt export\`, you need to run \`nuxt build --target static\``
|
|
|
|
)
|
|
|
|
}
|
|
|
|
this.isFullStatic = config.isFullStatic
|
|
|
|
this.options.render.ssr = config.ssr
|
2017-06-18 15:44:01 +00:00
|
|
|
}
|
|
|
|
|
2017-07-04 22:26:01 +00:00
|
|
|
// Initialize dist directory
|
|
|
|
if (init) {
|
|
|
|
await this.initDist()
|
2017-06-11 14:17:36 +00:00
|
|
|
}
|
2017-11-23 22:31:54 +00:00
|
|
|
}
|
2017-06-12 20:16:42 +00:00
|
|
|
|
2019-07-10 10:45:49 +00:00
|
|
|
async initRoutes (...args) {
|
2017-06-12 20:16:42 +00:00
|
|
|
// Resolve config.generate.routes promises before generating the routes
|
2017-07-04 22:26:01 +00:00
|
|
|
let generateRoutes = []
|
2020-05-07 19:08:01 +00:00
|
|
|
if (this.options.mode === MODES.universal && this.options.router.mode !== 'hash') {
|
2017-05-14 18:21:14 +00:00
|
|
|
try {
|
2018-01-11 18:20:35 +00:00
|
|
|
generateRoutes = await promisifyRoute(
|
|
|
|
this.options.generate.routes || [],
|
|
|
|
...args
|
|
|
|
)
|
2017-06-11 14:17:36 +00:00
|
|
|
} catch (e) {
|
2018-04-01 20:20:46 +00:00
|
|
|
consola.error('Could not resolve routes')
|
2017-06-11 14:17:36 +00:00
|
|
|
throw e // eslint-disable-line no-unreachable
|
2016-11-24 00:47:11 +00:00
|
|
|
}
|
2017-06-11 14:17:36 +00:00
|
|
|
}
|
2020-05-07 19:08:01 +00:00
|
|
|
let routes = []
|
|
|
|
// Generate only index.html for router.mode = 'hash' or client-side apps
|
|
|
|
if (this.options.mode === MODES.spa || this.options.router.mode === 'hash') {
|
|
|
|
routes = ['/']
|
|
|
|
} else {
|
|
|
|
routes = flatRoutes(this.getAppRoutes())
|
|
|
|
}
|
|
|
|
routes = routes.filter(route => this.shouldGenerateRoute(route))
|
2017-07-04 22:26:01 +00:00
|
|
|
routes = this.decorateWithPayloads(routes, generateRoutes)
|
2017-06-11 14:17:36 +00:00
|
|
|
|
2017-10-30 21:39:08 +00:00
|
|
|
// extendRoutes hook
|
|
|
|
await this.nuxt.callHook('generate:extendRoutes', routes)
|
2017-07-03 11:11:40 +00:00
|
|
|
|
2017-11-23 22:31:54 +00:00
|
|
|
return routes
|
|
|
|
}
|
|
|
|
|
2020-05-07 19:08:01 +00:00
|
|
|
shouldGenerateRoute (route) {
|
|
|
|
return this.options.generate.exclude.every((regex) => {
|
|
|
|
if (typeof regex === 'string') {
|
|
|
|
return regex !== route
|
|
|
|
}
|
|
|
|
return !regex.test(route)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
getBuildConfig () {
|
2020-05-08 11:55:39 +00:00
|
|
|
try {
|
|
|
|
return require(path.join(this.options.buildDir, 'nuxt/config.json'))
|
|
|
|
} catch (err) {
|
|
|
|
return null
|
|
|
|
}
|
2020-05-07 19:08:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getAppRoutes () {
|
|
|
|
return require(path.join(this.options.buildDir, 'routes.json'))
|
|
|
|
}
|
|
|
|
|
2019-07-10 10:45:49 +00:00
|
|
|
async generateRoutes (routes) {
|
2018-08-08 10:54:05 +00:00
|
|
|
const errors = []
|
2017-11-23 22:31:54 +00:00
|
|
|
|
2020-05-07 19:08:01 +00:00
|
|
|
this.routes = routes
|
|
|
|
// Add routes to the tracked generated routes (for crawler)
|
|
|
|
this.routes.forEach(({ route }) => this.generatedRoutes.add(route))
|
2017-07-04 22:26:01 +00:00
|
|
|
// Start generate process
|
2020-05-07 19:08:01 +00:00
|
|
|
while (this.routes.length) {
|
2017-06-11 14:17:36 +00:00
|
|
|
let n = 0
|
2018-01-11 18:20:35 +00:00
|
|
|
await Promise.all(
|
2020-05-07 19:08:01 +00:00
|
|
|
this.routes
|
2018-01-11 18:20:35 +00:00
|
|
|
.splice(0, this.options.generate.concurrency)
|
|
|
|
.map(async ({ route, payload }) => {
|
|
|
|
await waitFor(n++ * this.options.generate.interval)
|
|
|
|
await this.generateRoute({ route, payload, errors })
|
|
|
|
})
|
|
|
|
)
|
2017-06-11 14:17:36 +00:00
|
|
|
}
|
2017-06-12 20:16:42 +00:00
|
|
|
|
2018-01-11 18:20:35 +00:00
|
|
|
// Improve string representation for errors
|
2018-11-08 09:15:56 +00:00
|
|
|
// TODO: Use consola for more consistency
|
2018-01-11 18:20:35 +00:00
|
|
|
errors.toString = () => this._formatErrors(errors)
|
|
|
|
|
2017-11-23 22:31:54 +00:00
|
|
|
return errors
|
|
|
|
}
|
|
|
|
|
2019-07-10 10:45:49 +00:00
|
|
|
_formatErrors (errors) {
|
2018-01-11 18:20:35 +00:00
|
|
|
return errors
|
|
|
|
.map(({ type, route, error }) => {
|
|
|
|
const isHandled = type === 'handled'
|
|
|
|
const color = isHandled ? 'yellow' : 'red'
|
|
|
|
|
2020-05-07 19:08:01 +00:00
|
|
|
let line = chalk[color](` ${route}\n\n`)
|
2018-01-11 18:20:35 +00:00
|
|
|
|
|
|
|
if (isHandled) {
|
2020-05-07 19:08:01 +00:00
|
|
|
line += chalk.grey(JSON.stringify(error, undefined, 2) + '\n')
|
2018-01-11 18:20:35 +00:00
|
|
|
} else {
|
2020-05-07 19:08:01 +00:00
|
|
|
line += chalk.grey(error.stack || error.message || `${error}`)
|
2018-01-11 18:20:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return line
|
|
|
|
})
|
|
|
|
.join('\n')
|
|
|
|
}
|
|
|
|
|
2019-07-10 10:45:49 +00:00
|
|
|
async afterGenerate () {
|
2018-08-08 10:54:05 +00:00
|
|
|
const { fallback } = this.options.generate
|
2018-01-27 00:20:03 +00:00
|
|
|
|
2018-08-23 17:33:02 +00:00
|
|
|
// Disable SPA fallback if value isn't a non-empty string
|
2018-12-09 22:00:48 +00:00
|
|
|
if (typeof fallback !== 'string' || !fallback) {
|
|
|
|
return
|
|
|
|
}
|
2018-01-27 00:20:03 +00:00
|
|
|
|
2018-03-16 19:11:24 +00:00
|
|
|
const fallbackPath = path.join(this.distPath, fallback)
|
2018-01-27 00:20:03 +00:00
|
|
|
|
|
|
|
// Prevent conflicts
|
2019-01-29 10:16:45 +00:00
|
|
|
if (await fsExtra.exists(fallbackPath)) {
|
2018-04-01 20:20:46 +00:00
|
|
|
consola.warn(`SPA fallback was configured, but the configured path (${fallbackPath}) already exists.`)
|
2018-01-27 00:20:03 +00:00
|
|
|
return
|
2017-08-18 16:31:55 +00:00
|
|
|
}
|
2018-01-27 00:20:03 +00:00
|
|
|
|
|
|
|
// Render and write the SPA template to the fallback path
|
2020-05-07 19:08:01 +00:00
|
|
|
let { html } = await this.nuxt.server.renderRoute('/', {
|
|
|
|
spa: true,
|
|
|
|
staticAssetsBase: this.staticAssetsBase
|
|
|
|
})
|
2019-05-23 09:45:22 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
html = this.minifyHtml(html)
|
|
|
|
} catch (error) {
|
2019-11-26 22:42:39 +00:00
|
|
|
consola.warn('HTML minification failed for SPA fallback')
|
2019-05-23 09:45:22 +00:00
|
|
|
}
|
|
|
|
|
2018-03-16 19:11:24 +00:00
|
|
|
await fsExtra.writeFile(fallbackPath, html, 'utf8')
|
2020-05-07 19:08:01 +00:00
|
|
|
consola.success('Client-side fallback created: `' + fallback + '`')
|
2017-05-11 12:06:57 +00:00
|
|
|
}
|
2017-07-04 22:26:01 +00:00
|
|
|
|
2019-07-10 10:45:49 +00:00
|
|
|
async initDist () {
|
2017-07-04 22:26:01 +00:00
|
|
|
// Clean destination folder
|
2018-03-16 19:11:24 +00:00
|
|
|
await fsExtra.remove(this.distPath)
|
2017-11-23 22:31:54 +00:00
|
|
|
|
2020-05-07 19:08:01 +00:00
|
|
|
consola.info(`Generating output directory: ${path.basename(this.distPath)}/`)
|
2017-11-23 22:31:54 +00:00
|
|
|
await this.nuxt.callHook('generate:distRemoved', this)
|
2017-07-04 22:26:01 +00:00
|
|
|
|
|
|
|
// Copy static and built files
|
2019-01-29 10:16:45 +00:00
|
|
|
if (await fsExtra.exists(this.staticRoutes)) {
|
2018-03-16 19:11:24 +00:00
|
|
|
await fsExtra.copy(this.staticRoutes, this.distPath)
|
2017-07-04 22:26:01 +00:00
|
|
|
}
|
2020-05-07 19:08:01 +00:00
|
|
|
// Copy .nuxt/dist/client/ to dist/_nuxt/
|
2018-03-16 19:11:24 +00:00
|
|
|
await fsExtra.copy(this.srcBuiltPath, this.distNuxtPath)
|
2017-07-04 22:26:01 +00:00
|
|
|
|
2020-05-07 19:08:01 +00:00
|
|
|
if (this.payloadDir) {
|
|
|
|
await fsExtra.ensureDir(this.payloadDir)
|
|
|
|
}
|
|
|
|
|
2018-08-01 16:07:43 +00:00
|
|
|
// Add .nojekyll file to let GitHub Pages add the _nuxt/ folder
|
2017-07-04 22:26:01 +00:00
|
|
|
// https://help.github.com/articles/files-that-start-with-an-underscore-are-missing/
|
2018-03-16 19:11:24 +00:00
|
|
|
const nojekyllPath = path.resolve(this.distPath, '.nojekyll')
|
|
|
|
fsExtra.writeFile(nojekyllPath, '')
|
2017-07-04 22:26:01 +00:00
|
|
|
|
2017-11-23 22:31:54 +00:00
|
|
|
await this.nuxt.callHook('generate:distCopied', this)
|
2017-07-04 22:26:01 +00:00
|
|
|
}
|
|
|
|
|
2019-07-10 10:45:49 +00:00
|
|
|
decorateWithPayloads (routes, generateRoutes) {
|
2018-08-08 10:54:05 +00:00
|
|
|
const routeMap = {}
|
2017-07-04 22:26:01 +00:00
|
|
|
// Fill routeMap for known routes
|
2018-08-06 00:12:44 +00:00
|
|
|
routes.forEach((route) => {
|
|
|
|
routeMap[route] = { route, payload: null }
|
2017-07-04 22:26:01 +00:00
|
|
|
})
|
|
|
|
// Fill routeMap with given generate.routes
|
2018-08-06 00:12:44 +00:00
|
|
|
generateRoutes.forEach((route) => {
|
2017-10-30 17:41:22 +00:00
|
|
|
// route is either a string or like { route : '/my_route/1', payload: {} }
|
2018-10-12 22:31:19 +00:00
|
|
|
const path = isString(route) ? route : route.route
|
2017-07-04 22:26:01 +00:00
|
|
|
routeMap[path] = {
|
|
|
|
route: path,
|
|
|
|
payload: route.payload || null
|
|
|
|
}
|
|
|
|
})
|
2018-10-12 22:31:19 +00:00
|
|
|
return Object.values(routeMap)
|
2017-07-04 22:26:01 +00:00
|
|
|
}
|
|
|
|
|
2019-07-10 10:45:49 +00:00
|
|
|
async generateRoute ({ route, payload = {}, errors = [] }) {
|
2017-07-04 22:26:01 +00:00
|
|
|
let html
|
2017-11-23 22:31:54 +00:00
|
|
|
const pageErrors = []
|
2017-07-04 22:26:01 +00:00
|
|
|
|
|
|
|
try {
|
2020-05-07 19:08:01 +00:00
|
|
|
const renderContext = {
|
|
|
|
payload,
|
|
|
|
staticAssetsBase: this.staticAssetsBase
|
|
|
|
}
|
|
|
|
const res = await this.nuxt.server.renderRoute(route, renderContext)
|
|
|
|
html = res.html
|
|
|
|
|
|
|
|
// If crawler activated and called from generateRoutes()
|
|
|
|
if (this.options.generate.crawler && this.options.render.ssr) {
|
|
|
|
parse(html).querySelectorAll('a').map((el) => {
|
2020-05-08 16:10:06 +00:00
|
|
|
const href = (el.getAttribute('href') || '').replace(/\/+$/, '').split('?')[0].split('#')[0].trim()
|
2020-05-07 19:08:01 +00:00
|
|
|
|
2020-05-08 14:27:15 +00:00
|
|
|
if (href.startsWith('/') && !path.extname(href) && this.shouldGenerateRoute(href) && !this.generatedRoutes.has(href)) {
|
2020-05-07 19:08:01 +00:00
|
|
|
this.generatedRoutes.add(href) // add the route to the tracked list
|
|
|
|
this.routes.push({ route: href })
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save Static Assets
|
|
|
|
if (this.staticAssetsDir && renderContext.staticAssets) {
|
|
|
|
for (const asset of renderContext.staticAssets) {
|
|
|
|
const assetPath = path.join(this.staticAssetsDir, asset.path)
|
|
|
|
await fsExtra.ensureDir(path.dirname(assetPath))
|
|
|
|
await fsExtra.writeFile(assetPath, asset.src, 'utf-8')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-04 22:26:01 +00:00
|
|
|
if (res.error) {
|
2017-11-23 22:31:54 +00:00
|
|
|
pageErrors.push({ type: 'handled', route, error: res.error })
|
2017-07-04 22:26:01 +00:00
|
|
|
}
|
|
|
|
} catch (err) {
|
2017-11-23 22:31:54 +00:00
|
|
|
pageErrors.push({ type: 'unhandled', route, error: err })
|
2019-02-08 16:25:11 +00:00
|
|
|
errors.push(...pageErrors)
|
2017-11-23 22:31:54 +00:00
|
|
|
|
2018-01-11 18:20:35 +00:00
|
|
|
await this.nuxt.callHook('generate:routeFailed', {
|
|
|
|
route,
|
|
|
|
errors: pageErrors
|
|
|
|
})
|
2018-09-19 10:39:47 +00:00
|
|
|
consola.error(this._formatErrors(pageErrors))
|
2017-11-23 22:31:54 +00:00
|
|
|
|
|
|
|
return false
|
2017-07-04 22:26:01 +00:00
|
|
|
}
|
|
|
|
|
2019-05-23 09:45:22 +00:00
|
|
|
try {
|
|
|
|
html = this.minifyHtml(html)
|
|
|
|
} catch (err) {
|
|
|
|
const minifyErr = new Error(
|
|
|
|
`HTML minification failed. Make sure the route generates valid HTML. Failed HTML:\n ${html}`
|
|
|
|
)
|
|
|
|
pageErrors.push({ type: 'unhandled', route, error: minifyErr })
|
2017-07-04 22:26:01 +00:00
|
|
|
}
|
|
|
|
|
2019-04-22 18:50:07 +00:00
|
|
|
let fileName
|
2017-11-06 07:36:28 +00:00
|
|
|
|
|
|
|
if (this.options.generate.subFolders) {
|
2019-04-22 18:50:07 +00:00
|
|
|
fileName = path.join(route, path.sep, 'index.html') // /about -> /about/index.html
|
|
|
|
fileName = fileName === '/404/index.html' ? '/404.html' : fileName // /404 -> /404.html
|
2017-11-06 07:36:28 +00:00
|
|
|
} else {
|
2019-10-08 08:47:13 +00:00
|
|
|
const normalizedRoute = route.replace(/\/$/, '')
|
|
|
|
fileName = route.length > 1 ? path.join(path.sep, normalizedRoute + '.html') : path.join(path.sep, 'index.html')
|
2017-11-06 07:36:28 +00:00
|
|
|
}
|
2017-10-30 22:14:21 +00:00
|
|
|
|
|
|
|
// Call hook to let user update the path & html
|
2019-04-22 18:50:07 +00:00
|
|
|
const page = { route, path: fileName, html }
|
2017-10-30 22:14:21 +00:00
|
|
|
await this.nuxt.callHook('generate:page', page)
|
|
|
|
|
2018-03-16 19:11:24 +00:00
|
|
|
page.path = path.join(this.distPath, page.path)
|
2017-07-04 22:26:01 +00:00
|
|
|
|
|
|
|
// Make sure the sub folders are created
|
2018-03-16 19:11:24 +00:00
|
|
|
await fsExtra.mkdirp(path.dirname(page.path))
|
|
|
|
await fsExtra.writeFile(page.path, page.html, 'utf8')
|
2017-07-04 22:26:01 +00:00
|
|
|
|
2018-01-11 18:20:35 +00:00
|
|
|
await this.nuxt.callHook('generate:routeCreated', {
|
|
|
|
route,
|
|
|
|
path: page.path,
|
|
|
|
errors: pageErrors
|
|
|
|
})
|
2017-11-23 22:31:54 +00:00
|
|
|
|
|
|
|
if (pageErrors.length) {
|
2018-04-01 20:20:46 +00:00
|
|
|
consola.error('Error generating ' + route)
|
2019-02-08 16:25:11 +00:00
|
|
|
errors.push(...pageErrors)
|
2018-03-13 17:19:39 +00:00
|
|
|
} else {
|
2018-04-01 20:20:46 +00:00
|
|
|
consola.success('Generated ' + route)
|
2017-11-23 22:31:54 +00:00
|
|
|
}
|
|
|
|
|
2017-07-04 22:26:01 +00:00
|
|
|
return true
|
|
|
|
}
|
2019-05-23 09:45:22 +00:00
|
|
|
|
2019-07-10 10:45:49 +00:00
|
|
|
minifyHtml (html) {
|
2019-05-23 09:45:22 +00:00
|
|
|
let minificationOptions = this.options.build.html.minify
|
|
|
|
|
|
|
|
// Legacy: Override minification options with generate.minify if present
|
|
|
|
// TODO: Remove in Nuxt version 3
|
|
|
|
if (typeof this.options.generate.minify !== 'undefined') {
|
|
|
|
minificationOptions = this.options.generate.minify
|
|
|
|
consola.warn('generate.minify has been deprecated and will be removed in the next major version.' +
|
|
|
|
' Use build.html.minify instead!')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!minificationOptions) {
|
|
|
|
return html
|
|
|
|
}
|
|
|
|
|
|
|
|
return htmlMinifier.minify(html, minificationOptions)
|
|
|
|
}
|
2016-11-10 11:33:52 +00:00
|
|
|
}
|