mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
- Update vite to v6 - Update svelte to v5 - Bump nanoid to fix audit - Align api and cli to both use the same node types version
15 lines
330 B
JavaScript
15 lines
330 B
JavaScript
// Copyright 2019-2024 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import 'uno.css'
|
|
import './app.css'
|
|
import App from './App.svelte'
|
|
import { mount } from 'svelte'
|
|
|
|
const app = mount(App, {
|
|
target: document.querySelector('#app')
|
|
})
|
|
|
|
export default app
|