mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 05:35:13 +00:00
fix: add generate.routes and disable crawler
This commit is contained in:
parent
415db060b0
commit
a4952a057c
@ -52,6 +52,10 @@ export function getoptions (nuxtOptions: NuxtOptions): SLSOptions {
|
||||
inlineChunks: true
|
||||
}
|
||||
|
||||
if (Array.isArray(nuxtOptions.generate.routes)) {
|
||||
defaults.static = nuxtOptions.generate.routes
|
||||
}
|
||||
|
||||
let target = process.env.NUXT_SLS_TARGET || nuxtOptions.serverless.target || 'node'
|
||||
if (typeof target === 'function') {
|
||||
target = target(nuxtOptions)
|
||||
|
@ -18,6 +18,8 @@ export default <Module> function slsModule () {
|
||||
|
||||
nuxt.options.build.standalone = true
|
||||
|
||||
nuxt.options.generate.crawler = false
|
||||
|
||||
nuxt.hook('generate:cache:ignore', (ignore) => {
|
||||
ignore.push(options.slsDir)
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user