2021-03-31 17:14:56 +02:00
|
|
|
import "remixicon/fonts/remixicon.css"
|
2021-04-08 10:42:43 +02:00
|
|
|
import "@spectrum-css/vars/dist/spectrum-global.css"
|
|
|
|
import "@spectrum-css/vars/dist/spectrum-medium.css"
|
|
|
|
import "@spectrum-css/vars/dist/spectrum-darkest.css"
|
2021-04-13 19:07:45 +02:00
|
|
|
import "@spectrum-css/vars/dist/spectrum-dark.css"
|
|
|
|
import "@spectrum-css/vars/dist/spectrum-light.css"
|
|
|
|
import "@spectrum-css/vars/dist/spectrum-lightest.css"
|
2021-04-08 10:42:43 +02:00
|
|
|
import "@spectrum-css/page/dist/index-vars.css"
|
2021-04-13 19:07:45 +02:00
|
|
|
import "./global.css"
|
2021-09-29 11:16:44 +02:00
|
|
|
import { suppressWarnings } from "./helpers/warnings"
|
2021-04-20 21:06:27 +02:00
|
|
|
import loadSpectrumIcons from "@budibase/bbui/spectrum-icons-vite.js"
|
2021-09-29 11:16:44 +02:00
|
|
|
import App from "./App.svelte"
|
|
|
|
|
|
|
|
// Init spectrum icons
|
2021-04-08 12:17:37 +02:00
|
|
|
loadSpectrumIcons()
|
|
|
|
|
2021-09-29 11:16:44 +02:00
|
|
|
// Suppress svelte runtime warnings
|
|
|
|
suppressWarnings([
|
|
|
|
"was created with unknown prop",
|
|
|
|
"was created without expected prop",
|
|
|
|
"received an unexpected slot",
|
|
|
|
])
|
2019-07-13 11:35:57 +02:00
|
|
|
|
2021-03-31 17:14:56 +02:00
|
|
|
export default new App({
|
2020-02-03 10:24:25 +01:00
|
|
|
target: document.getElementById("app"),
|
|
|
|
})
|