mirror of
https://github.com/nuxt/nuxt.git
synced 2024-12-04 11:27:13 +00:00
11 lines
231 B
TypeScript
11 lines
231 B
TypeScript
|
import { extendPreset } from '../utils'
|
||
|
import { SigmaPreset } from '../context'
|
||
|
import { lambda } from './lambda'
|
||
|
|
||
|
export const netlify: SigmaPreset = extendPreset(lambda, {
|
||
|
ignore: [
|
||
|
'netlify.toml',
|
||
|
'_redirects'
|
||
|
]
|
||
|
})
|