mirror of
https://github.com/parabirb/freeremote-client.git
synced 2025-06-15 13:02:30 -04:00
13 lines
297 B
JavaScript
13 lines
297 B
JavaScript
import adapter from "@sveltejs/adapter-static";
|
|
|
|
const config = {
|
|
kit: { adapter: adapter() },
|
|
compilerOptions: {
|
|
warningFilter: (warning) =>
|
|
!warning.filename?.includes("node_modules") &&
|
|
!warning.code.startsWith("a11y"),
|
|
},
|
|
};
|
|
|
|
export default config;
|