Skip to content

Commit

Permalink
Merge pull request #534 from frontierJS/next
Browse files Browse the repository at this point in the history
cleanup | move css import from App.svelte into main.js
  • Loading branch information
jakobrosenberg authored Oct 27, 2023
2 parents 5dcb660 + 06138c5 commit 276cbe8
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion examples/typescript-tailwind-cypress/src/App.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<script lang="ts">
import { Router } from '@roxi/routify';
import routes from '../.routify/routes.default.js';
import './app.css';
</script>

<Router {routes} />
1 change: 1 addition & 0 deletions examples/typescript-tailwind-cypress/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import App from './App.svelte'
import './app.css'

const app = new App({ target: document.body })

Expand Down
1 change: 0 additions & 1 deletion examples/typescript-tailwind-playwright/src/App.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<script lang="ts">
import { Router } from '@roxi/routify';
import routes from '../.routify/routes.default.js';
import './app.css';
</script>

<Router {routes} />
1 change: 1 addition & 0 deletions examples/typescript-tailwind-playwright/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import App from './App.svelte'
import './app.css'

const app = new App({ target: document.body })

Expand Down
1 change: 0 additions & 1 deletion examples/typescript-tailwind/src/App.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<script lang="ts">
import { Router } from '@roxi/routify';
import routes from '../.routify/routes.default.js';
import './app.css';
</script>

<Router {routes} />
1 change: 1 addition & 0 deletions examples/typescript-tailwind/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import App from './App.svelte'
import './app.css';

const app = new App({ target: document.body })

Expand Down

0 comments on commit 276cbe8

Please sign in to comment.