Iss 100: Implement interfaces and constants for generic API methods (#127)

SETOptions struct added. Adjusted Set method calls for using new struct. - @osteensco
This commit is contained in:
osteensco
2024-09-20 10:53:39 -05:00
committed by GitHub
parent cc086a9504
commit 016bd2d2bd
14 changed files with 7077 additions and 1881 deletions

View File

@@ -29,6 +29,23 @@ const config: Config = {
locales: ["en"],
},
// Custom plugin for hot reloading
plugins: [
function hotReload() {
return {
name: 'hot-reload',
configureWebpack() {
return {
watchOptions: {
poll: 1000, // Check for changes every second
aggregateTimeout: 300, // Delay before rebuilding
},
};
},
};
},
],
presets: [
[
"classic",