File tree Expand file tree Collapse file tree 3 files changed +10
-11
lines changed
examples/sveltekit_vite/vite-example Expand file tree Collapse file tree 3 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 1- import ' ./app.css'
2- import App from ' ./App.svelte'
1+ import " ./app.css" ;
2+ import App from " ./App.svelte" ;
33
44import { Logger } from "../../../../" ;
55const log : Logger < any > = new Logger ( ) ;
66log . silly ( "I am a silly log." ) ;
77
8-
98const app = new App ( {
10- target : document . getElementById ( ' app' ) ,
11- } )
9+ target : document . getElementById ( " app" ) ,
10+ } ) ;
1211
13- export default app
12+ export default app ;
Original file line number Diff line number Diff line change 1- import { vitePreprocess } from ' @sveltejs/vite-plugin-svelte'
1+ import { vitePreprocess } from " @sveltejs/vite-plugin-svelte" ;
22
33export default {
44 // Consult https://svelte.dev/docs#compile-time-svelte-preprocess
55 // for more information about preprocessors
66 preprocess : vitePreprocess ( ) ,
7- }
7+ } ;
Original file line number Diff line number Diff line change 1- import { defineConfig } from ' vite'
2- import { svelte } from ' @sveltejs/vite-plugin-svelte'
1+ import { defineConfig } from " vite" ;
2+ import { svelte } from " @sveltejs/vite-plugin-svelte" ;
33
44// https://vitejs.dev/config/
55export default defineConfig ( {
66 plugins : [ svelte ( ) ] ,
7- } )
7+ } ) ;
You can’t perform that action at this time.
0 commit comments