
* Vite, remove webpack * Clean deps * Fix apollo types * Fix types * CI * Fix types * Fix types * Keep required deps for storybook * Rename build dir * Sentry config, fix react-virtualized issue * Set NODE_OPTIONS * Fast-refresh rule for eslint * Update deps * Update deps * Update deps * Remove webpack * Add sw * Update dockerfile * Update dockerfile * Update readme, dev port
14 lines
271 B
TypeScript
14 lines
271 B
TypeScript
declare module "*.jpg";
|
|
declare module "*.png";
|
|
declare module "*.svg" {
|
|
const content: any;
|
|
export default content;
|
|
}
|
|
|
|
declare interface Window {
|
|
PasswordCredential: PasswordCredential;
|
|
__SALEOR_CONFIG__: {
|
|
API_URL: string;
|
|
APP_MOUNT_URI: string;
|
|
};
|
|
}
|