Creating for AE "Sponsorships". Update file timestamps and remove unused files. Also switched to Svelte with Vite.
This commit is contained in:
13
svelte.config.js
Normal file
13
svelte.config.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
|
||||
|
||||
export default {
|
||||
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
|
||||
// for more information about preprocessors
|
||||
preprocess: vitePreprocess(),
|
||||
|
||||
// Disable accessibility warnings
|
||||
onwarn: (warning, handler) => {
|
||||
if (warning.code.includes("a11y")) return;
|
||||
handler(warning);
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user