Hi, I’ve got a svelte kit app and I get this warning:
After November 15, 2022, the Xenial build image will not be supported. To avoid build failure, select another build image. Read the migration guide.
I’ve looked through Please read! End of support for Xenial build image: Everything you need to know and Build configuration overview | Netlify Docs and am still a little confused.
My netlify.toml is
[build]
command = "npm run build"
publish = "build/publish/"
functions = "build/functions/"
environment = { NODE_VERSION = "14.17.5" }
[dev]
command = "svelte-kit dev"
[functions]
directory = "netlify/functions"
node_bundler = "esbuild"
and these are my dependencies:
"devDependencies": {
"@sveltejs/adapter-netlify": "1.0.0-next.49",
"@sveltejs/kit": "1.0.0-next.291",
"autoprefixer": "^10.4.2",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-svelte3": "^3.2.0",
"postcss": "^8.4.5",
"postcss-load-config": "^3.1.0",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.1",
"pwa-asset-generator": "^4.1.1",
"svelte": "^3.43.1",
"svelte-preprocess": "^4.9.8"
},
"type": "module",
"dependencies": {
"dayjs": "^1.10.7",
"lodash": "^4.17.21",
"lz-string": "^1.4.4",
"screenfull": "^5.1.0",
"tailwindcss": "^3.0.13"
}
Thanks in advance : )